html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000000;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.2;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1025px) {
  section {
    overflow: hidden;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  display: flex;
  align-items: center;
  padding: 1.667vw 5.556vw;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .header {
    padding: 18px 30px;
    justify-content: space-between;
  }
}
.header .hamburger {
  width: 32px;
  height: 32px;
  display: none;
}
.header .hamburger::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.header .hamburger::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.header .hamburger span {
  width: 100%;
  height: 2px;
  background: #ffffff;
}
@media (max-width: 600px) {
  .header .hamburger {
    display: flex;
    justify-content: center;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
  }
}
.header .logo {
  width: 9.375vw;
}
@media (max-width: 600px) {
  .header .logo {
    width: 92px;
  }
}
.header .logo a {
  display: block;
}
.header .logo a img {
  display: block;
  width: 100%;
}
@media (max-width: 600px) {
  .header nav {
    display: none;
  }
}
.header nav ul {
  display: flex;
  align-items: center;
  gap: 2.639vw;
}
.header nav ul li {
  font-family: "Work Sans", sans-serif;
}
.header nav ul li a {
  padding: 1vw 0;
  display: block;
  color: #ffffff;
  font-size: 0.972vw;
  position: relative;
}
.header nav ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #03F87E;
  position: absolute;
  left: 0;
  bottom: 15px;
  opacity: 0;
  transition: 0.5s;
}
.header nav ul li a:hover {
  font-weight: 700;
  color: #03F87E;
}
.header nav ul li a:hover::after {
  bottom: 0;
  opacity: 1;
}
.header nav ul li.active a {
  font-weight: 700;
  color: #03F87E;
}
.header nav ul li.active a::after {
  bottom: 0;
  opacity: 1;
}
.header .htLabsLogo {
  width: 5.556vw;
  position: absolute;
  left: 5.556vw;
  z-index: 3;
  top: 100%;
}
@media (max-width: 600px) {
  .header .htLabsLogo {
    display: none;
  }
}
.header .htLabsLogo img {
  width: 100%;
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -345px;
  width: 345px;
  height: 100%;
  transition: left 0.3s ease-in-out;
  z-index: 5;
  background: linear-gradient(90deg, #6804BF, #3C276F);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar.active {
  left: 0;
}
.sidebar .inner .sidebarHead {
  padding: 22px 25px 5px;
  display: flex;
  justify-content: flex-end;
}
.sidebar .inner .sidebarHead span {
  width: 24px;
  height: 24px;
  position: relative;
}
.sidebar .inner .sidebarHead span::before {
  content: "";
  width: 2px;
  height: 26px;
  background: #ffffff;
  position: absolute;
  transform: rotate(45deg);
  left: 10px;
}
.sidebar .inner .sidebarHead span::after {
  content: "";
  width: 2px;
  height: 26px;
  background: #ffffff;
  position: absolute;
  transform: rotate(-45deg);
  left: 10px;
}
.sidebar .inner .mwebNav li a {
  display: block;
  padding: 18px 40px;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.sidebar .inner .mwebNav li.active a {
  color: #03F87E;
  font-weight: 700;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(67, 33, 124, 0.3098039216);
}
.sidebar .inner .contactUs {
  display: flex;
  padding: 20px 30px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(67, 33, 124, 0.3098039216);
}
.sidebar .inner .contactUs a {
  font-size: 18px;
  background: #03F87E;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 700;
  display: block;
}
.sidebar .sidebarFtr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 25px 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(67, 33, 124, 0.3098039216);
}
.sidebar .sidebarFtr .sidebarLogo1 {
  width: 108px;
}
.sidebar .sidebarFtr .sidebarLogo1 img {
  display: block;
  width: 100%;
}
.sidebar .sidebarFtr .sidebarLogo2 {
  width: 65px;
}
.sidebar .sidebarFtr .sidebarLogo2 img {
  display: block;
  width: 100%;
}

.sidebarOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 4;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.sidebarOverlay.active {
  opacity: 1;
  visibility: visible;
}

.HomeBanner {
  background: url(../images/sectionBg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 62vw;
  position: relative;
}
@media (min-width: 1600px) {
  .HomeBanner {
    height: 55vw;
  }
}
@media (max-width: 1025px) {
  .HomeBanner {
    height: auto;
  }
}
.HomeBanner .bannerContent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2vw;
  position: relative;
  z-index: 2;
  gap: 5.21vw;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent {
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 10vw;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent {
    margin-top: 20px;
    padding: 0;
    gap: 46px;
    margin-bottom: 140px;
  }
}
.HomeBanner .bannerContent .contentBox {
  width: 42.2vw;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent .contentBox {
    width: 75vw;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .contentBox {
    width: 100%;
    padding: 0 30px;
  }
}
.HomeBanner .bannerContent .contentBox h1 {
  font-size: 4vw;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.667vw;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent .contentBox h1 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .contentBox h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.HomeBanner .bannerContent .contentBox p {
  font-size: 1.25vw;
  color: #E6E8EC;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent .contentBox p {
    font-size: 1.5vw;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .contentBox p {
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.HomeBanner .bannerContent .contentBox .buttonWrap {
  display: flex;
  gap: 1.111vw;
  margin: 3.333vw 0 0;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent .contentBox .buttonWrap {
    margin: 15px 0 0;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .contentBox .buttonWrap {
    margin: 20px 0 0;
    gap: 12px;
    flex-direction: column;
  }
}
.HomeBanner .bannerContent .contentBox .buttonWrap a {
  font-size: 1.25vw;
  padding: 1.389vw 5.62vw;
  border-radius: 0.694vw;
  font-weight: bold;
  transition: 0.5s;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .contentBox .buttonWrap a {
    font-size: 18px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
}
.HomeBanner .bannerContent .contentBox .buttonWrap a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1882352941);
}
.HomeBanner .bannerContent .contentBox .buttonWrap a.buttonDark {
  background: #03F87E;
  color: #3C276F;
}
.HomeBanner .bannerContent .contentBox .buttonWrap a.buttonLight {
  border: 1px solid #03F87E;
  color: #03F87E;
}
.HomeBanner .bannerContent .enquiryForm {
  width: 373px;
  background: #000000;
  border-radius: 10px;
  padding: 22px;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .enquiryForm {
    width: calc(100% - 20px);
    padding: 24px 14px;
    margin-top: -100px;
    position: relative;
    top: 100px;
  }
}
.HomeBanner .bannerContent .enquiryForm .headingBox {
  margin-bottom: 20px;
}
.HomeBanner .bannerContent .enquiryForm .headingBox h2 {
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .enquiryForm .headingBox h2 {
    text-align: center;
  }
}
.HomeBanner .bannerContent .enquiryForm .headingBox h3 {
  font-size: 14px;
  color: #A4A4A4;
  font-weight: 400;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .enquiryForm .headingBox h3 {
    text-align: center;
  }
}
.HomeBanner .bannerContent .enquiryForm .formgroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 33px;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .enquiryForm .formgroup {
    margin-bottom: 28px;
  }
}
.HomeBanner .bannerContent .enquiryForm .row {
  display: flex;
  gap: 15px;
}
.HomeBanner .bannerContent .enquiryForm .row input {
  font-family: "DM Sans", sans-serif;
  width: 100%;
  border: 0;
  padding: 10px 5px;
  font-size: 14px;
  background: none;
  border-bottom: 1px solid #888888;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.HomeBanner .bannerContent .enquiryForm .row input::-moz-placeholder {
  color: #A4A4A4;
  font-weight: 400;
}
.HomeBanner .bannerContent .enquiryForm .row input::placeholder {
  color: #A4A4A4;
  font-weight: 400;
}
.HomeBanner .bannerContent .enquiryForm .row input:focus {
  border-color: #03F87E;
}
.HomeBanner .bannerContent .enquiryForm .row input:-internal-autofill-selected {
  background: none;
}
.HomeBanner .bannerContent .enquiryForm .row input:focus ~ label, .HomeBanner .bannerContent .enquiryForm .row input.hascontent ~ label {
  top: 0%;
  font-size: 12px;
}
.HomeBanner .bannerContent .enquiryForm .row input:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.HomeBanner .bannerContent .enquiryForm .row label {
  color: #A4A4A4;
  font-weight: 400;
  font-size: 14px;
  padding: 0 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}
.HomeBanner .bannerContent .enquiryForm .row .col {
  width: 100%;
}
.HomeBanner .bannerContent .enquiryForm .row .colCode {
  width: 82px;
}
.HomeBanner .bannerContent .enquiryForm .row .colPhone {
  flex: 1;
}
.HomeBanner .bannerContent .enquiryForm .row .inputWrap {
  width: 100%;
  position: relative;
}
.HomeBanner .bannerContent .enquiryForm .row .error {
  color: red;
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.HomeBanner .bannerContent .enquiryForm .submitBtn {
  font-size: 18px;
  color: #3C276F;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 40px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .enquiryForm .submitBtn {
    margin: 0 auto;
  }
}
.HomeBanner .bannerContent .enquiryForm .submitBtn .loader {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #C12C85;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}
.HomeBanner .bannerContent .thankyoumsg {
  width: 373px;
  background: #000000;
  border-radius: 10px;
  padding: 22px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1025px) {
  .HomeBanner .bannerContent .thankyoumsg {
    align-self: initial;
  }
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .thankyoumsg {
    width: calc(100% - 20px);
    padding: 24px 14px;
    margin-top: -100px;
    position: relative;
    top: 100px;
  }
}
.HomeBanner .bannerContent .thankyoumsg h2 {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .thankyoumsg h2 {
    text-align: center;
  }
}
.HomeBanner .bannerContent .thankyoumsg h3 {
  font-size: 14px;
  color: #A4A4A4;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeBanner .bannerContent .thankyoumsg h3 {
    text-align: center;
  }
}
.HomeBanner .bgShapeWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.HomeBanner .bgShapeWrap .shape1 {
  width: 14vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .HomeBanner .bgShapeWrap .shape1 {
    display: none;
  }
}
.HomeBanner .bgShapeWrap .shape1 img {
  display: block;
  width: 100%;
}
.HomeBanner .bgShapeWrap .shape2 {
  width: 21.042vw;
  position: absolute;
  left: 0;
  bottom: 1.5vw;
}
.HomeBanner .bgShapeWrap .shape2 img {
  display: block;
  width: 100%;
}
.HomeBanner .bgShapeWrap .shape3 {
  width: 54.514vw;
  position: absolute;
  top: 10vw;
  right: 0;
}
@media (max-width: 600px) {
  .HomeBanner .bgShapeWrap .shape3 {
    display: none;
  }
}
.HomeBanner .bgShapeWrap .shape3 img {
  display: block;
  width: 100%;
}
.HomeBanner .bgShapeWrap .Mwebshape1 {
  width: 23px;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 600px) {
  .HomeBanner .bgShapeWrap .Mwebshape1 {
    display: block;
  }
}
.HomeBanner .bgShapeWrap .Mwebshape1 img {
  display: block;
  width: 100%;
}
.HomeBanner .bgShapeWrap .Mwebshape2 {
  width: 84px;
  position: absolute;
  right: 0;
  bottom: 40vw;
  display: none;
}
@media (max-width: 600px) {
  .HomeBanner .bgShapeWrap .Mwebshape2 {
    display: block;
  }
}
.HomeBanner .bgShapeWrap .Mwebshape2 img {
  display: block;
  width: 100%;
}

.innerBanner {
  position: relative;
}
.innerBanner .bannerWrap {
  background: rgb(119, 23, 191);
  background: linear-gradient(90deg, rgb(119, 23, 191) 0%, rgb(104, 21, 172) 50%, rgb(86, 46, 144) 100%);
}
.innerBanner .bannerContent {
  text-align: center;
  padding-top: 2.78vw;
  position: relative;
  z-index: 4;
}
@media (max-width: 600px) {
  .innerBanner .bannerContent {
    padding: 0 30px;
  }
}
.innerBanner .bannerContent h1 {
  color: #ffffff;
  font-size: 3.33vw;
}
@media (max-width: 600px) {
  .innerBanner .bannerContent h1 {
    font-size: 28px;
    line-height: 40px;
  }
}
.innerBanner .bannerContent p {
  font-size: 1.81vw;
  color: #ffffff;
}
@media (max-width: 600px) {
  .innerBanner .bannerContent p {
    font-size: 16px;
    line-height: 20px;
  }
}
.innerBanner .triangle {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 100%;
  height: 6.74vw;
  background: rgb(119, 23, 191);
  background: linear-gradient(90deg, rgb(119, 23, 191) 0%, rgb(104, 21, 172) 50%, rgb(86, 46, 144) 100%);
  margin-top: -1px;
}
.innerBanner .bgShapeWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.innerBanner .bgShapeWrap .shape1 {
  width: 10vw;
  position: absolute;
  left: 0;
  top: 8vw;
}
@media (max-width: 600px) {
  .innerBanner .bgShapeWrap .shape1 {
    display: none;
  }
}
.innerBanner .bgShapeWrap .shape1 img {
  display: block;
  width: 100%;
}
.innerBanner .bgShapeWrap .shape2 {
  width: 21.042vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
.innerBanner .bgShapeWrap .shape2 img {
  display: block;
  width: 100%;
}
.innerBanner .bgShapeWrap .shape3 {
  width: 54.514vw;
  position: absolute;
  top: 5vw;
  right: 0;
}
@media (max-width: 600px) {
  .innerBanner .bgShapeWrap .shape3 {
    display: none;
  }
}
.innerBanner .bgShapeWrap .shape3 img {
  display: block;
  width: 100%;
}

.successStorieBanner {
  background: url(../images/sectionBg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 73.972vw;
  position: relative;
}
@media (max-width: 600px) {
  .successStorieBanner {
    height: auto;
  }
}
.successStorieBanner .bannerContent {
  text-align: center;
  padding-top: 2.78vw;
  position: relative;
  z-index: 4;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent {
    padding: 0 30px;
  }
}
.successStorieBanner .bannerContent h1 {
  color: #ffffff;
  font-size: 3.33vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent h1 {
    font-size: 28px;
    line-height: 40px;
  }
}
.successStorieBanner .bannerContent p {
  font-size: 1.81vw;
  color: #ffffff;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent p {
    font-size: 16px;
    line-height: 20px;
  }
}
.successStorieBanner .bannerContent .bannerMain {
  padding: 0 10.69vw;
  padding-top: 8.68vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain {
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 40px;
  }
}
.successStorieBanner .bannerContent .bannerMain h2 {
  display: flex;
  align-items: center;
  padding-left: 4.79vw;
  font-size: 3.47vw;
  gap: 1vw;
  color: #ffffff;
  margin-bottom: 3.47vw;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain h2 {
    padding-left: 0;
    font-size: 22px;
    margin-bottom: 34px;
    display: block;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain h2 img {
    position: relative;
    top: 10px;
  }
}
.successStorieBanner .bannerContent .bannerMain h2 img.diagoeLogo {
  width: 13.33vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain h2 img.diagoeLogo {
    width: 87px;
  }
}
.successStorieBanner .bannerContent .bannerMain h2 img.mondelezLogo {
  width: 17.29vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain h2 img.mondelezLogo {
    width: 114px;
  }
}
.successStorieBanner .bannerContent .bannerMain h2 img.rvrLogo {
  width: 10.42vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain h2 img.rvrLogo {
    width: 83px;
  }
}
.successStorieBanner .bannerContent .bannerMain .imageBox {
  display: flex;
  justify-content: flex-end;
}
.successStorieBanner .bannerContent .bannerMain .imageBox.mondelezBanner {
  justify-content: center;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain .imageBox {
    justify-content: center;
  }
}
.successStorieBanner .bannerContent .bannerMain .imageBox img {
  width: 57.01vw;
}
@media (max-width: 600px) {
  .successStorieBanner .bannerContent .bannerMain .imageBox img {
    width: 100%;
  }
}
.successStorieBanner .bgShapeWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.successStorieBanner .bgShapeWrap .shape1 {
  width: 14vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .successStorieBanner .bgShapeWrap .shape1 {
    display: none;
  }
}
.successStorieBanner .bgShapeWrap .shape1 img {
  display: block;
  width: 100%;
}
.successStorieBanner .bgShapeWrap .shape2 {
  width: 21.042vw;
  position: absolute;
  left: 0;
  bottom: 1.5vw;
}
.successStorieBanner .bgShapeWrap .shape2 img {
  display: block;
  width: 100%;
}
.successStorieBanner .bgShapeWrap .shape3 {
  width: 54.514vw;
  position: absolute;
  top: 10vw;
  right: 0;
}
@media (max-width: 600px) {
  .successStorieBanner .bgShapeWrap .shape3 {
    display: none;
  }
}
.successStorieBanner .bgShapeWrap .shape3 img {
  display: block;
  width: 100%;
}
.successStorieBanner .bgShapeWrap .Mwebshape1 {
  width: 23px;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 600px) {
  .successStorieBanner .bgShapeWrap .Mwebshape1 {
    display: block;
  }
}
.successStorieBanner .bgShapeWrap .Mwebshape1 img {
  display: block;
  width: 100%;
}
.successStorieBanner .bgShapeWrap .Mwebshape2 {
  width: 84px;
  position: absolute;
  right: 0;
  bottom: 40vw;
  display: none;
}
@media (max-width: 600px) {
  .successStorieBanner .bgShapeWrap .Mwebshape2 {
    display: block;
  }
}
.successStorieBanner .bgShapeWrap .Mwebshape2 img {
  display: block;
  width: 100%;
}

.caseStudiesTabs {
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .caseStudiesTabs {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.caseStudiesTabs ul {
  display: flex;
  border-radius: 0.69vw;
  background: #ffffff;
  border: 1px solid #f8288c;
}
@media (max-width: 600px) {
  .caseStudiesTabs ul {
    border-radius: 10px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .caseStudiesTabs ul li {
    width: 50%;
  }
}
.caseStudiesTabs ul li a {
  padding: 1.39vw 2.78vw;
  display: block;
  font-size: 1.25vw;
  font-weight: 700;
  color: #F8288C;
  border-radius: 0.69vw;
}
@media (max-width: 600px) {
  .caseStudiesTabs ul li a {
    padding: 20px 5px;
    font-size: 14px;
    border-radius: 10px;
    height: 100%;
  }
}
.caseStudiesTabs ul li.active a {
  background: #F8288C;
  color: #ffffff;
}

.HomeOurServices {
  padding: 0 3.611vw;
  margin-top: -7vw;
  margin-bottom: 3.472vw;
  position: relative;
}
@media (max-width: 1025px) {
  .HomeOurServices {
    padding: 0 20px;
    margin-top: -5vw;
  }
}
@media (max-width: 600px) {
  .HomeOurServices {
    padding: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.HomeOurServices h2 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeOurServices h2 {
    font-size: 28px;
  }
}
.HomeOurServices .ourServicesSlider .slick-track {
  display: flex;
  align-items: stretch;
  padding: 2.083vw 0 2.083vw;
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-track {
    padding: 25px 0;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide {
  padding: 0 0.83vw;
  height: auto;
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide {
    padding: 0 12px;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item {
  display: block;
  height: 100%;
  background: #ffffff;
  padding: 2.431vw 0.833vw 2.431vw 2.778vw;
  border-radius: 0.694vw;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  transition: 0.5s;
}
@media (max-width: 1025px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item {
    padding: 20px;
    border-radius: 10px;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item:hover {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item:hover {
    transform: scale(1);
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item .icon {
  margin-bottom: 1.389vw;
}
@media (max-width: 1025px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item .icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item .icon {
    margin-bottom: 20px;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item .icon img {
  width: 5vw;
  display: block;
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item .icon img {
    width: 75px;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item h3 {
  color: #252B42;
  font-size: 1.25vw;
  line-height: 1.667vw;
  font-weight: 700;
  margin-bottom: 1.667vw;
  padding-bottom: 1.667vw;
  position: relative;
}
@media (max-width: 1025px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item h3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item h3::after {
  content: "";
  width: 3.472vw;
  height: 2px;
  background: #ED3C95;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item h3::after {
    width: 52px;
    content: initial;
  }
}
.HomeOurServices .ourServicesSlider .slick-slide .item p {
  color: #737373;
  font-size: 0.972vw;
  line-height: 1.389vw;
  font-weight: 400;
}
@media (max-width: 1025px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item p {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 600px) {
  .HomeOurServices .ourServicesSlider .slick-slide .item p {
    font-size: 14px;
    line-height: 20px;
    display: none;
  }
}
.HomeOurServices .ourServicesSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 4px;
}
.HomeOurServices .ourServicesSlider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #A55BE9;
  border-radius: 50%;
  transition: 0.5s;
}
.HomeOurServices .ourServicesSlider .slick-dots li.slick-active {
  width: 30px;
  border-radius: 20px;
  background: #412477;
}
.HomeOurServices .ourServicesSlider .slick-dots li button {
  display: none;
}
.HomeOurServices .learnMore {
  display: flex;
  justify-content: center;
}
.HomeOurServices .learnMore a {
  font-size: 1.111vw;
  color: #ffffff;
  padding: 1.111vw 2.222vw;
  border-radius: 0.694vw;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 600px) {
  .HomeOurServices .learnMore a {
    font-size: 16px;
    padding: 16px 35px;
    border-radius: 10px;
  }
}
.HomeOurServices .learnMore a:hover {
  background-position: 100% 0;
}

.HomeOurExpertise {
  padding: 0 3.611vw;
  margin-bottom: 3.472vw;
}
@media (max-width: 1025px) {
  .HomeOurExpertise {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .HomeOurExpertise {
    padding: 33px 0 0;
    margin-bottom: 0;
  }
}
.HomeOurExpertise h2 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeOurExpertise h2 {
    font-size: 28px;
    padding: 0 30px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-track {
  display: flex;
  align-items: stretch;
  padding: 2.083vw 0 2.083vw;
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-track {
    padding: 20px 0;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide {
  padding: 0 0.83vw;
  height: auto;
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide {
    padding: 0 12px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item {
  display: block;
  height: 100%;
  background: #ffffff;
  padding: 2.431vw 0.833vw 2.431vw 2.778vw;
  border-radius: 0.694vw;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  transition: 0.5s;
}
@media (max-width: 1025px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item {
    padding: 35px 40px;
    border-radius: 10px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item:hover {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item:hover {
    transform: scale(1);
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item .icon {
  margin-bottom: 1.389vw;
}
@media (max-width: 1025px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item .icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item .icon {
    margin-bottom: 20px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item .icon img {
  width: 5vw;
  display: block;
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item .icon img {
    width: 75px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item h3 {
  color: #252B42;
  font-size: 1.25vw;
  line-height: 1.667vw;
  font-weight: 700;
  margin-bottom: 1.667vw;
  padding-bottom: 1.667vw;
  position: relative;
}
@media (max-width: 1025px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item h3::after {
  content: "";
  width: 3.472vw;
  height: 2px;
  background: #ED3C95;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item h3::after {
    width: 50px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item > ul > li {
  color: #737373;
  font-size: 0.972vw;
  line-height: 1.389vw;
  font-weight: 400;
  position: relative;
  padding-left: 1vw;
}
@media (max-width: 1025px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item > ul > li {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item > ul > li {
    padding-left: 15px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-slide .item > ul > li::before {
  content: "";
  width: 0.3vw;
  height: 0.3vw;
  border-radius: 50%;
  background: #737373;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .HomeOurExpertise .ourExpertiseSlider .slick-slide .item > ul > li::before {
    width: 4px;
    height: 4px;
  }
}
.HomeOurExpertise .ourExpertiseSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 4px;
}
.HomeOurExpertise .ourExpertiseSlider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #A55BE9;
  border-radius: 50%;
  transition: 0.5s;
}
.HomeOurExpertise .ourExpertiseSlider .slick-dots li.slick-active {
  width: 30px;
  border-radius: 20px;
  background: #412477;
}
.HomeOurExpertise .ourExpertiseSlider .slick-dots li button {
  display: none;
}
.HomeOurExpertise .learnMore {
  display: flex;
  justify-content: center;
}
.HomeOurExpertise .learnMore a {
  font-size: 1.111vw;
  color: #ffffff;
  padding: 1.111vw 2.222vw;
  border-radius: 0.694vw;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 600px) {
  .HomeOurExpertise .learnMore a {
    font-size: 16px;
    padding: 16px 35px;
    border-radius: 10px;
  }
}
.HomeOurExpertise .learnMore a:hover {
  background-position: 100% 0;
}
.HomeOurExpertise .Mwebshape1 {
  width: 111px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media (max-width: 600px) {
  .HomeOurExpertise .Mwebshape1 {
    display: block;
  }
}
.HomeOurExpertise .Mwebshape1 img {
  display: block;
  width: 100%;
}

.HomeWeServe {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: relative;
  padding: 2vw 9.861vw 2vw 0;
}
@media (max-width: 600px) {
  .HomeWeServe {
    flex-direction: column;
    align-items: center;
    padding: 47px 0 0;
    overflow: unset;
  }
}
@media (max-width: 600px) {
  .HomeWeServe .inner {
    width: 100%;
    overflow: hidden;
  }
}
.HomeWeServe .content {
  position: absolute;
  left: 8.611vw;
  width: 29.222vw;
  top: 4vw;
}
@media (max-width: 600px) {
  .HomeWeServe .content {
    position: initial;
    width: 100%;
    padding: 0 50px;
    margin-bottom: 30px;
  }
}
.HomeWeServe .content h3 {
  font-size: 3.333vw;
  font-weight: 700;
  color: #3C276F;
  margin-bottom: 0.694vw;
}
@media (max-width: 600px) {
  .HomeWeServe .content h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.HomeWeServe .content p {
  font-size: 1.806vw;
  font-weight: 400;
  color: #3C276F;
}
@media (max-width: 600px) {
  .HomeWeServe .content p {
    text-align: center;
    font-size: 18px;
  }
}
.HomeWeServe .infoGraphic {
  width: 53.264vw;
}
@media (max-width: 600px) {
  .HomeWeServe .infoGraphic {
    width: 460px;
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 375px) {
  .HomeWeServe .infoGraphic {
    padding: 0 20px;
  }
}
.HomeWeServe .infoGraphic img {
  width: 100%;
  display: block;
}
.HomeWeServe .shape1 {
  width: 19.861vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .HomeWeServe .shape1 {
    display: none;
  }
}
.HomeWeServe .shape1 img {
  display: block;
  width: 100%;
}
.HomeWeServe .Mwebshape1 {
  width: 192px;
  position: absolute;
  top: -39px;
  left: 0;
  display: none;
}
@media (max-width: 600px) {
  .HomeWeServe .Mwebshape1 {
    display: block;
  }
}
.HomeWeServe .Mwebshape1 img {
  display: block;
  width: 100%;
}

.HomeOurOfferings {
  padding: 2.778vw 8.611vw 5.208vw;
  position: relative;
}
@media (max-width: 600px) {
  .HomeOurOfferings {
    padding: 38px 35px 0 35px;
  }
}
.HomeOurOfferings .headingWrap {
  text-align: center;
  margin-bottom: 4.444vw;
}
@media (max-width: 600px) {
  .HomeOurOfferings .headingWrap {
    margin-bottom: 30px;
  }
}
.HomeOurOfferings .headingWrap h3 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.694vw;
}
@media (max-width: 600px) {
  .HomeOurOfferings .headingWrap h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.HomeOurOfferings .headingWrap p {
  font-size: 1.944vw;
  color: #3C276F;
}
@media (max-width: 600px) {
  .HomeOurOfferings .headingWrap p {
    text-align: center;
    font-size: 18px;
  }
}
.HomeOurOfferings .offeringList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2.361vw;
  grid-row-gap: 5.139vw;
}
@media (max-width: 600px) {
  .HomeOurOfferings .offeringList {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 32px;
  }
}
.HomeOurOfferings .offeringList > li {
  display: flex;
  align-items: center;
  gap: 0.833vw;
}
@media (max-width: 600px) {
  .HomeOurOfferings .offeringList > li:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 600px) {
  .HomeOurOfferings .offeringList > li {
    flex-direction: column;
    gap: 16px;
  }
}
.HomeOurOfferings .offeringList > li .icon {
  width: 4.444vw;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .HomeOurOfferings .offeringList > li .icon {
    width: 64px;
  }
}
.HomeOurOfferings .offeringList > li .icon img {
  display: block;
  width: 100%;
}
.HomeOurOfferings .offeringList > li h4 {
  font-size: 18px;
  color: #252B42;
  font-weight: 700;
}
@media (max-width: 600px) {
  .HomeOurOfferings .offeringList > li h4 {
    text-align: center;
  }
}
.HomeOurOfferings .shape1 {
  width: 19.861vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 600px) {
  .HomeOurOfferings .shape1 {
    display: none;
  }
}
.HomeOurOfferings .shape1 img {
  display: block;
  width: 100%;
}
.HomeOurOfferings .Mwebshape1 {
  width: 111px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media (max-width: 600px) {
  .HomeOurOfferings .Mwebshape1 {
    display: block;
  }
}
.HomeOurOfferings .Mwebshape1 img {
  display: block;
  width: 100%;
}
.HomeOurOfferings .viewAllWrap {
  display: none;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .HomeOurOfferings .viewAllWrap {
    display: flex;
    margin-top: 45px;
  }
}
.HomeOurOfferings .viewAllWrap .veiwAllBtn {
  font-size: 16px;
  padding: 16px 35px;
  border-radius: 10px;
  color: #ffffff;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  border: 0;
}

.HomeOurApproach {
  padding: 2.778vw 11.806vw;
}
@media (max-width: 600px) {
  .HomeOurApproach {
    padding: 19px 0 0;
    margin-bottom: 32px;
  }
}
.HomeOurApproach .headingWrap {
  text-align: center;
  margin-bottom: 4.444vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .headingWrap {
    margin-bottom: 0;
    padding: 0 35px;
  }
}
.HomeOurApproach .headingWrap h3 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.694vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .headingWrap h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.HomeOurApproach .headingWrap p {
  font-size: 1.944vw;
  color: #3C276F;
}
@media (max-width: 600px) {
  .HomeOurApproach .headingWrap p {
    text-align: center;
    font-size: 18px;
  }
}
.HomeOurApproach .approachList {
  display: flex;
  flex-direction: column;
  gap: 4.444vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList {
    gap: 32px;
    display: none;
  }
}
.HomeOurApproach .approachList > li {
  display: flex;
  align-items: center;
  gap: 3.889vw;
}
.HomeOurApproach .approachList > li .box1 {
  width: 50%;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box1 {
    width: 100%;
    padding: 22px 25px;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
  }
}
.HomeOurApproach .approachList > li .box1 .icon {
  margin-bottom: 1.667vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box1 .icon {
    margin-bottom: 12px;
  }
}
.HomeOurApproach .approachList > li .box1 .icon img {
  width: 4.444vw;
  display: block;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box1 .icon img {
    width: 42px;
  }
}
.HomeOurApproach .approachList > li .box1 h4 {
  font-size: 2.222vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.903vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box1 h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.HomeOurApproach .approachList > li .box1 p {
  font-size: 1.111vw;
  color: #68718B;
  font-weight: 400;
  line-height: 1.8vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box1 p {
    font-size: 12px;
    line-height: 18px;
  }
}
.HomeOurApproach .approachList > li .box2 {
  width: 50%;
  background: #f9f5fd;
  border-radius: 2.222vw;
  padding: 2.5vw 5vw;
  position: relative;
}
@media (max-width: 600px) {
  .HomeOurApproach .approachList > li .box2 {
    display: none;
  }
}
.HomeOurApproach .approachList > li .box2::before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 0.833vw solid transparent;
  border-bottom: 0.833vw solid transparent;
  border-right: 1.389vw solid #f9f5fd;
  position: absolute;
  right: 100%;
  bottom: 3.472vw;
}
.HomeOurApproach .approachList > li .box2 > ul {
  display: flex;
  flex-direction: column;
  gap: 2.083vw;
}
.HomeOurApproach .approachList > li .box2 > ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #5E6282;
  display: flex;
  gap: 2.292vw;
}
.HomeOurApproach .approachList > li .box2 > ul li::before {
  content: "";
  width: 2.153vw;
  height: 2.153vw;
  flex-shrink: 0;
  background-image: url(../images/checkIcon.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.HomeOurApproach .approachList > li:nth-child(even) .box2 {
  order: 1;
}
.HomeOurApproach .approachList > li:nth-child(even) .box2::before {
  left: 100%;
  right: initial;
  border-left: 20px solid #f9f5fd;
  border-right: 0;
}
.HomeOurApproach .approachList > li:nth-child(even) .box1 {
  order: 2;
}
.HomeOurApproach .ourApproachSlider {
  display: none;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider {
    display: block;
  }
}
.HomeOurApproach .ourApproachSlider .slick-track {
  padding: 2.083vw 0 2.083vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-track {
    padding: 0;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide {
  padding: 0 0.83vw;
  height: auto;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide {
    padding: 9px 12px 20px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item {
  display: block;
  height: 100%;
  background: #ffffff;
  padding: 2.431vw 0.833vw 2.431vw 2.778vw;
  border-radius: 0.694vw;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  transition: 0.5s;
}
@media (max-width: 1025px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item {
    padding: 35px 40px;
    border-radius: 10px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item .icon {
  margin-bottom: 1.667vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item .icon {
    margin-bottom: 12px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item .icon img {
  width: 4.444vw;
  display: block;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item .icon img {
    width: 72px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item h4 {
  font-size: 2.222vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.903vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item p {
  font-size: 1.111vw;
  color: #68718B;
  font-weight: 400;
  line-height: 1.8vw;
}
@media (max-width: 600px) {
  .HomeOurApproach .ourApproachSlider .slick-slide .item p {
    font-size: 12px;
    line-height: 18px;
  }
}
.HomeOurApproach .ourApproachSlider .slick-slide .item .learMoreBtn {
  font-size: 16px;
  padding: 16px 35px;
  border-radius: 10px;
  color: #ffffff;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  border: 0;
  margin-top: 20px;
}
.HomeOurApproach .ourApproachSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 4px;
}
.HomeOurApproach .ourApproachSlider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #A55BE9;
  border-radius: 50%;
  transition: 0.5s;
}
.HomeOurApproach .ourApproachSlider .slick-dots li.slick-active {
  width: 30px;
  border-radius: 20px;
  background: #412477;
}
.HomeOurApproach .ourApproachSlider .slick-dots li button {
  display: none;
}
.HomeOurApproach .Mwebshape1 {
  width: 173px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media (max-width: 600px) {
  .HomeOurApproach .Mwebshape1 {
    display: block;
  }
}
.HomeOurApproach .Mwebshape1 img {
  display: block;
  width: 100%;
}

.HomeOurTechnology {
  background: #F4F3F9;
  padding: 4.514vw 1.389vw;
}
@media (max-width: 600px) {
  .HomeOurTechnology {
    padding: 14px 0;
  }
}
.HomeOurTechnology h3 {
  text-align: center;
  font-size: 2.292vw;
  font-weight: 600;
  color: #6804BF;
  margin-bottom: 1.875vw;
}
@media (max-width: 600px) {
  .HomeOurTechnology h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.HomeOurTechnology .ourTechnologySlider {
  padding: 0 9.792vw;
}
@media (max-width: 600px) {
  .HomeOurTechnology .ourTechnologySlider {
    padding: 0;
  }
}
.HomeOurTechnology .ourTechnologySlider .slick-slide {
  padding: 0 1vw;
}
@media (max-width: 600px) {
  .HomeOurTechnology .ourTechnologySlider .slick-slide {
    padding: 0 5px;
  }
}
.HomeOurTechnology .ourTechnologySlider .slick-slide .imageWrap {
  padding: 1.181vw;
  border-radius: 0.694vw;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 600px) {
  .HomeOurTechnology .ourTechnologySlider .slick-slide .imageWrap {
    padding: 5px 10px;
  }
}
.HomeOurTechnology .ourTechnologySlider .slick-slide .imageWrap img {
  display: block;
  width: 100%;
}
.HomeOurTechnology .ourTechnologySlider .slick-slide h4 {
  font-size: 1.25vw;
  text-align: center;
  margin-top: 0.56vw;
  color: #3C276F;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 600px) {
  .HomeOurTechnology .ourTechnologySlider .slick-slide h4 {
    font-size: 12px;
    margin-top: 5px;
  }
}
.HomeOurTechnology .ourTechnologySlider .slick-slide.slick-current.slick-active .imageWrap {
  background: #ffffff;
}
.HomeOurTechnology .ourTechnologySlider .slick-slide.slick-current.slick-active h4 {
  visibility: visible;
  opacity: 1;
}

.HomeCompliances {
  background: url(../images/sectionBg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 55.972vw;
  position: relative;
}
@media (max-width: 600px) {
  .HomeCompliances {
    height: auto;
    margin-bottom: 25px;
  }
}
.HomeCompliances .contentBox {
  padding: 0 8.125vw;
  display: flex;
  align-items: center;
  gap: 2.778vw;
  padding-top: 7.083vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .HomeCompliances .contentBox {
    flex-direction: column;
    width: 100%;
    padding: 20px 0 15vw;
  }
}
.HomeCompliances .contentBox .left {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 36.597vw;
}
@media (max-width: 600px) {
  .HomeCompliances .contentBox .left {
    width: 100%;
    text-align: center;
    padding: 0 30px;
    gap: 10px;
  }
}
.HomeCompliances .contentBox .left h3 {
  color: #FFFFFF;
  font-size: 3.333vw;
}
@media (max-width: 600px) {
  .HomeCompliances .contentBox .left h3 {
    font-size: 28px;
  }
}
.HomeCompliances .contentBox .left p {
  color: #ffffff;
  font-size: 1.806vw;
}
@media (max-width: 600px) {
  .HomeCompliances .contentBox .left p {
    font-size: 18px;
    line-height: 23px;
  }
}
.HomeCompliances .contentBox .right {
  width: 44.306vw;
}
@media (max-width: 600px) {
  .HomeCompliances .contentBox .right {
    width: 480px;
    max-width: 100%;
    padding: 0 10px;
  }
}
.HomeCompliances .contentBox .right img {
  width: 100%;
  display: block;
}
.HomeCompliances .bgShapeWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.HomeCompliances .bgShapeWrap .shape1 {
  width: 14vw;
  position: absolute;
  left: 0;
  top: 18%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .HomeCompliances .bgShapeWrap .shape1 {
    top: 50%;
  }
}
.HomeCompliances .bgShapeWrap .shape1 img {
  display: block;
  width: 100%;
}
.HomeCompliances .bgShapeWrap .shape2 {
  width: 21.042vw;
  position: absolute;
  left: 0;
  bottom: 1.5vw;
}
.HomeCompliances .bgShapeWrap .shape2 img {
  display: block;
  width: 100%;
}
.HomeCompliances .bgShapeWrap .shape3 {
  width: 54.514vw;
  position: absolute;
  top: 1vw;
  right: 0;
}
@media (max-width: 600px) {
  .HomeCompliances .bgShapeWrap .shape3 {
    top: 30%;
    transform: translateY(-50%);
  }
}
.HomeCompliances .bgShapeWrap .shape3 img {
  display: block;
  width: 100%;
}
.HomeCompliances .learnMoreBtn {
  color: #ffffff;
  font-size: 16px;
  padding: 16px 35px;
  border-radius: 10px;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media (max-width: 600px) {
  .HomeCompliances .learnMoreBtn {
    display: block;
    z-index: 2;
  }
}

.HomeCaseStudies {
  padding-bottom: 4.444vw;
}
@media (max-width: 600px) {
  .HomeCaseStudies {
    padding-bottom: 0;
    margin-bottom: 34px;
  }
}
.HomeCaseStudies h3 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: bold;
  margin-bottom: 2.5vw;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeCaseStudies h3 {
    font-size: 30px;
    margin-bottom: 0;
  }
}
.HomeCaseStudies .caseStudiesSlider {
  padding: 0 8vw;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider {
    padding: 0;
  }
}
.HomeCaseStudies .caseStudiesSlider .slick-track {
  padding: 1.7vw 0;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .slick-track {
    padding: 20px 0;
  }
}
.HomeCaseStudies .caseStudiesSlider .slick-slide {
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
  padding: 0 1vw;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .slick-slide {
    padding: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.0784313725);
    border-radius: 10px;
  }
}
.HomeCaseStudies .caseStudiesSlider .slick-center, .HomeCaseStudies .caseStudiesSlider .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true] {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .slick-center, .HomeCaseStudies .caseStudiesSlider .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true] {
    transform: scale(1);
  }
}
.HomeCaseStudies .caseStudiesSlider .slick-current.slick-active {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .slick-current.slick-active {
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .slick-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 4px;
  }
}
.HomeCaseStudies .caseStudiesSlider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #A55BE9;
  border-radius: 50%;
  transition: 0.5s;
}
.HomeCaseStudies .caseStudiesSlider .slick-dots li.slick-active {
  width: 30px;
  border-radius: 20px;
  background: #412477;
}
.HomeCaseStudies .caseStudiesSlider .slick-dots li button {
  display: none;
}
.HomeCaseStudies .caseStudiesSlider .imgbox {
  background: #F1F1F1;
  overflow: hidden;
  border-radius: 1vw 1vw 0 0;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .imgbox {
    border-radius: 10px 10px 0 0;
  }
}
.HomeCaseStudies .caseStudiesSlider .imgbox img {
  width: 100%;
  display: block;
}
.HomeCaseStudies .caseStudiesSlider .contentBox {
  padding: 1.667vw;
  border-radius: 0 0 1vw 1vw;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .contentBox {
    padding: 20px;
    border-radius: 0 0 10px 10px;
  }
}
.HomeCaseStudies .caseStudiesSlider .contentBox h4 {
  font-size: 1.667vw;
  color: #3C276F;
  margin-bottom: 0.833vw;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .contentBox h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.HomeCaseStudies .caseStudiesSlider .contentBox p {
  font-size: 1.111vw;
  color: #68718B;
}
@media (max-width: 600px) {
  .HomeCaseStudies .caseStudiesSlider .contentBox p {
    font-size: 14px;
  }
}
.HomeCaseStudies .learnMore {
  display: flex;
  justify-content: center;
  margin-top: 3vw;
}
@media (max-width: 600px) {
  .HomeCaseStudies .learnMore {
    margin-top: 20px;
  }
}
.HomeCaseStudies .learnMore a {
  font-size: 1.111vw;
  color: #ffffff;
  padding: 1.111vw 2.222vw;
  border-radius: 0.694vw;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 600px) {
  .HomeCaseStudies .learnMore a {
    font-size: 16px;
    padding: 16px 35px;
    border-radius: 10px;
  }
}
.HomeCaseStudies .learnMore a:hover {
  background-position: 100% 0;
}

.HomeLetsConnect {
  background: #F6F3FE;
  display: flex;
  justify-content: center;
  padding: 3.056vw 0 10vw;
  position: relative;
}
@media (max-width: 600px) {
  .HomeLetsConnect {
    padding: 30px 30px 20vw;
  }
}
.HomeLetsConnect .inner {
  width: 47.708vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .HomeLetsConnect .inner {
    width: 100%;
  }
}
.HomeLetsConnect .inner h3 {
  color: #3C276F;
  font-size: 3.333vw;
  margin-bottom: 1.667vw;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeLetsConnect .inner h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.HomeLetsConnect .inner p {
  color: #68718B;
  font-size: 1.25vw;
  margin-bottom: 1.667vw;
  text-align: center;
}
@media (max-width: 600px) {
  .HomeLetsConnect .inner p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.HomeLetsConnect .inner a {
  font-size: 1.111vw;
  border: 1px solid #6A36FF;
  padding: 1.111vw 2.222vw;
  font-weight: 700;
  color: #6A36FF;
  border-radius: 0.694vw;
  transition: 0.5s;
}
@media (max-width: 600px) {
  .HomeLetsConnect .inner a {
    font-size: 16px;
    padding: 16px;
    max-width: 100%;
    width: 283px;
    border-radius: 10px;
    text-align: center;
  }
}
.HomeLetsConnect .inner a:hover {
  transform: translateY(-3px);
}

footer {
  background: linear-gradient(90deg, #6804BF, #3C276F);
  position: relative;
}
footer .triangle {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 100%;
  height: 6.514vw;
  position: absolute;
  bottom: calc(100% - 2px);
  background: linear-gradient(90deg, #6804BF, #3C276F);
}
footer .ftrInner {
  padding: 1vw 10vw;
}
@media (max-width: 600px) {
  footer .ftrInner {
    padding: 25px 20px;
  }
}
footer .ftrInner .ftrRow {
  display: flex;
  justify-content: space-between;
  gap: 6.875vw;
  align-items: center;
  padding-top: 2vw;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow {
    flex-direction: column;
    align-items: center;
    gap: 23px;
    padding-top: 0;
  }
}
footer .ftrInner .ftrRow .ftrContact {
  display: flex;
  gap: 1.736vw;
  align-items: center;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrContact {
    flex-direction: row;
    gap: 6px;
  }
}
footer .ftrInner .ftrRow .ftrContact .ftrLogo {
  width: 10.97vw;
  display: block;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrContact .ftrLogo {
    width: 80px;
  }
}
footer .ftrInner .ftrRow .ftrContact .ftrLogo img {
  display: block;
  width: 100%;
}
footer .ftrInner .ftrRow .ftrContact .htLablog {
  display: table;
  width: 5.9vw;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrContact .htLablog {
    width: 40px;
  }
}
footer .ftrInner .ftrRow .ftrContact .htLablog img {
  display: block;
  width: 100%;
}
footer .ftrInner .ftrRow .ftrNavWrap {
  display: flex;
  gap: 2.78vw;
  align-items: center;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrNavWrap {
    width: 100%;
    justify-content: center;
    gap: 40px;
  }
}
footer .ftrInner .ftrRow .ftrNavWrap > ul {
  display: flex;
  gap: 2.78vw;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrNavWrap > ul {
    gap: 30px;
  }
}
footer .ftrInner .ftrRow .ftrNavWrap > ul > li > a {
  font-size: 1.11vw;
  color: #ffffff;
  font-weight: 400;
  display: block;
  transition: 0.5s;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrNavWrap > ul > li > a {
    font-size: 12px;
    line-height: 15px;
  }
}
footer .ftrInner .ftrRow .ftrNavWrap > ul > li > a:hover {
  transform: scale(1.1);
}
footer .ftrInner .ftrRow .ftrNavWrap .contactBtn {
  font-size: 1.25vw;
  background: #03F87E;
  border-radius: 0.694vw;
  padding: 0.694vw 1.042vw;
  display: block;
  font-weight: 700;
  align-self: flex-start;
}
@media (max-width: 600px) {
  footer .ftrInner .ftrRow .ftrNavWrap .contactBtn {
    display: none;
  }
}
footer .ftrInner .copyright {
  width: 100%;
  font-size: 0.97vw;
  color: #ffffff;
  padding-top: 3.56vw;
}
@media (max-width: 600px) {
  footer .ftrInner .copyright {
    padding-top: 12px;
    margin-top: 30px;
    font-size: 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1882352941);
  }
}
footer .shape1 {
  position: absolute;
  width: 8.611vw;
  left: 0;
  bottom: 0;
}
footer .shape1 img {
  width: 100%;
  display: block;
}
footer .shape2 {
  position: absolute;
  width: 18.694vw;
  right: 0;
  top: -8vw;
  z-index: 2;
}
footer .shape2 img {
  width: 100%;
  display: block;
}
footer .shape3 {
  position: absolute;
  width: 11.806vw;
  right: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  footer .shape3 {
    bottom: 20vw;
  }
}
footer .shape3 img {
  width: 100%;
  display: block;
}
footer .shape4 {
  position: absolute;
  width: 36.53vw;
  left: 0;
  z-index: 2;
  bottom: 75%;
}
footer .shape4 img {
  width: 100%;
  display: block;
}

.ourApproachModal {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(120%) scale(0);
  width: 100%;
  padding: 30px;
  background: #EFEBF3;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  border-radius: 15px 15px 0 0;
}
.ourApproachModal .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #C3CBE2;
}
.ourApproachModal .heading h4 {
  font-size: 18px;
  line-height: 24px;
  color: #252B42;
}
.ourApproachModal .heading .closeBtn {
  width: 18px;
  height: 18px;
  position: relative;
}
.ourApproachModal .heading .closeBtn::before {
  content: "";
  width: 2px;
  height: 24px;
  background: #5B5D81;
  position: absolute;
  transform: rotate(45deg);
  left: 8px;
  top: -3px;
}
.ourApproachModal .heading .closeBtn::after {
  content: "";
  width: 2px;
  height: 24px;
  background: #5B5D81;
  position: absolute;
  transform: rotate(-45deg);
  left: 8px;
  top: -3px;
}
.ourApproachModal > ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ourApproachModal > ul > li {
  color: #5E6282;
  display: flex;
  gap: 30px;
  font-size: 16px;
  line-height: 22px;
}
.ourApproachModal > ul > li::before {
  content: "";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-image: url("../images/checkIcon.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.ourApproachModal.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%) scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ourApproachModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.ourApproachModalOverlay.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s ease;
}

@media (max-width: 600px) {
  .ourServicesPage .innerBanner .bannerWrap {
    padding-bottom: 10vw;
  }
}
.ourServicesPage .ourServices {
  padding: 0 11.806vw 2.778vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices {
    padding: 0;
    margin-bottom: 42px;
    margin-top: -10vw;
    position: relative;
  }
}
.ourServicesPage .ourServices .serviceList {
  display: flex;
  flex-direction: column;
  gap: 4.444vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList {
    gap: 24px;
    padding: 0 35px 10px;
    position: relative;
    z-index: 2;
  }
}
.ourServicesPage .ourServices .serviceList > li {
  display: flex;
  align-items: center;
  gap: 3.889vw;
}
.ourServicesPage .ourServices .serviceList > li .box1 {
  width: 50%;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 {
    width: 100%;
    padding: 35px 40px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
  }
}
.ourServicesPage .ourServices .serviceList > li .box1 .icon {
  margin-bottom: 1.667vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 .icon {
    margin-bottom: 20px;
  }
}
.ourServicesPage .ourServices .serviceList > li .box1 .icon img {
  width: 4.444vw;
  display: block;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 .icon img {
    width: 72px;
  }
}
.ourServicesPage .ourServices .serviceList > li .box1 h4 {
  font-size: 2.222vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.903vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 h4 {
    font-size: 18px;
    color: #252B42;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .ourServicesPage .ourServices .serviceList > li .box1 h4::after {
    content: "";
    width: 52px;
    height: 2px;
    background: #ED3C95;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.ourServicesPage .ourServices .serviceList > li .box1 p {
  font-size: 1.111vw;
  color: #68718B;
  font-weight: 400;
  line-height: 1.8vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 p {
    font-size: 14px;
    line-height: 20px;
  }
}
.ourServicesPage .ourServices .serviceList > li .box1 .learMoreBtn {
  font-size: 16px;
  padding: 16px 35px;
  border-radius: 10px;
  color: #ffffff;
  background-image: linear-gradient(to right, #4536e2, #ba4dfe, #ba4dfe, #4536e2);
  background-size: 300% 100%;
  border: 0;
  margin-top: 20px;
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box1 .learMoreBtn {
    display: block;
  }
}
.ourServicesPage .ourServices .serviceList > li .box2 {
  width: 50%;
  background: #f9f5fd;
  border-radius: 2.222vw;
  padding: 2.5vw 5vw;
  position: relative;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .serviceList > li .box2 {
    display: none;
  }
}
.ourServicesPage .ourServices .serviceList > li .box2::before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 0.833vw solid transparent;
  border-bottom: 0.833vw solid transparent;
  border-right: 1.389vw solid #f9f5fd;
  position: absolute;
  right: 100%;
  bottom: 3.472vw;
}
.ourServicesPage .ourServices .serviceList > li .box2 > ul {
  display: flex;
  flex-direction: column;
  gap: 2.083vw;
}
.ourServicesPage .ourServices .serviceList > li .box2 > ul li {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #5E6282;
  display: flex;
  gap: 2.292vw;
}
.ourServicesPage .ourServices .serviceList > li .box2 > ul li::before {
  content: "";
  width: 2.153vw;
  height: 2.153vw;
  flex-shrink: 0;
  background-image: url(../images/checkIcon.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.ourServicesPage .ourServices .serviceList > li .box2 > ul li span {
  display: block;
  font-weight: 700;
}
.ourServicesPage .ourServices .serviceList > li:nth-child(even) .box2 {
  order: 1;
}
.ourServicesPage .ourServices .serviceList > li:nth-child(even) .box2::before {
  left: 100%;
  right: initial;
  border-left: 20px solid #f9f5fd;
  border-right: 0;
}
.ourServicesPage .ourServices .serviceList > li:nth-child(even) .box1 {
  order: 2;
}
.ourServicesPage .ourServices .Mwebshape1 {
  width: 192px;
  position: absolute;
  bottom: 30%;
  left: 0;
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .Mwebshape1 {
    display: block;
  }
}
.ourServicesPage .ourServices .Mwebshape2 {
  width: 111px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .Mwebshape2 {
    display: block;
  }
}
.ourServicesPage .ourServices .Mwebshape3 {
  width: 111px;
  position: absolute;
  bottom: 10%;
  right: 0;
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .ourServices .Mwebshape3 {
    display: block;
  }
}
.ourServicesPage .ourOfferings {
  padding: 2.778vw 8.611vw 5.208vw;
  position: relative;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings {
    padding: 57px 35px 0 35px;
    margin-bottom: 50px;
  }
}
.ourServicesPage .ourOfferings .headingWrap {
  text-align: center;
  margin-bottom: 4.444vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .headingWrap {
    margin-bottom: 30px;
  }
}
.ourServicesPage .ourOfferings .headingWrap h3 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: 700;
  margin-bottom: 0.694vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .headingWrap h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.ourServicesPage .ourOfferings .headingWrap p {
  font-size: 1.944vw;
  color: #3C276F;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .headingWrap p {
    text-align: center;
    font-size: 18px;
  }
}
.ourServicesPage .ourOfferings .offeringList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2.361vw;
  grid-row-gap: 5.139vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .offeringList {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 32px;
  }
}
.ourServicesPage .ourOfferings .offeringList > li {
  display: flex;
  align-items: center;
  gap: 0.833vw;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .offeringList > li {
    flex-direction: column;
    gap: 16px;
  }
}
.ourServicesPage .ourOfferings .offeringList > li .icon {
  width: 4.444vw;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .offeringList > li .icon {
    width: 64px;
  }
}
.ourServicesPage .ourOfferings .offeringList > li .icon img {
  display: block;
  width: 100%;
}
.ourServicesPage .ourOfferings .offeringList > li h4 {
  font-size: 18px;
  color: #252B42;
  font-weight: 700;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .offeringList > li h4 {
    text-align: center;
  }
}
.ourServicesPage .ourOfferings .shape1 {
  width: 19.861vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .shape1 {
    display: none;
  }
}
.ourServicesPage .ourOfferings .shape1 img {
  display: block;
  width: 100%;
}
.ourServicesPage .ourOfferings .Mwebshape1 {
  width: 173px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .ourOfferings .Mwebshape1 {
    display: block;
  }
}
.ourServicesPage .ourOfferings .Mwebshape1 img {
  display: block;
  width: 100%;
}
.ourServicesPage .compliances {
  position: relative;
  padding-bottom: 14.514vw;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances {
    margin-bottom: 25px;
  }
}
.ourServicesPage .compliances .contentBox {
  padding: 0 8.125vw;
  display: flex;
  align-items: center;
  gap: 2.778vw;
  padding-top: 5.56vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
}
.ourServicesPage .compliances .contentBox .left {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 36.597vw;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox .left {
    width: 100%;
    text-align: center;
    padding: 0 30px;
    gap: 10px;
  }
}
.ourServicesPage .compliances .contentBox .left h3 {
  color: #3C276F;
  font-size: 3.333vw;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox .left h3 {
    font-size: 28px;
  }
}
.ourServicesPage .compliances .contentBox .left p {
  color: #3C276F;
  font-size: 1.806vw;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox .left p {
    font-size: 18px;
    line-height: 23px;
  }
}
.ourServicesPage .compliances .contentBox .right {
  width: 44.306vw;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox .right {
    display: none;
  }
}
.ourServicesPage .compliances .contentBox .right img {
  width: 100%;
  display: block;
}
.ourServicesPage .compliances .contentBox .compliancesMwebList {
  flex-direction: column;
  gap: 30px;
  padding: 0 35px;
  margin-top: 16px;
  display: none;
}
@media (max-width: 600px) {
  .ourServicesPage .compliances .contentBox .compliancesMwebList {
    display: flex;
  }
}
.ourServicesPage .compliances .contentBox .compliancesMwebList li {
  background: #ffffff;
  border-radius: 5px;
  padding: 15px 28px;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1411764706);
  position: relative;
}
.ourServicesPage .compliances .contentBox .compliancesMwebList li h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #18214D;
}
.ourServicesPage .compliances .contentBox .compliancesMwebList li p {
  font-size: 12px;
  font-weight: 400;
  color: #5E6282;
  border-left: 3px solid #5618B8;
  padding-left: 10px;
}
.ourServicesPage .compliances .contentBox .compliancesMwebList li i {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.ourServicesPage .compliances .contentBox .compliancesMwebList li i img {
  display: block;
}

.aboutPage .innerBanner {
  z-index: 1;
}
.aboutPage .aboutBanner {
  position: relative;
  margin-top: -6.74vw;
}
.aboutPage .aboutBanner .bannerImage {
  width: 100%;
  height: 64.86vw;
  overflow: hidden;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .bannerImage {
    height: 417px;
  }
}
.aboutPage .aboutBanner .bannerImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutPage .aboutBanner .contentBox {
  position: absolute;
  bottom: 4.72vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox {
    position: relative;
    left: 0;
    transform: none;
    bottom: 0;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner {
  display: flex;
  align-items: center;
  gap: 10vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner {
    flex-direction: column;
    gap: 26px;
    padding: 23px 30px 0;
    background: #7717bf;
    background: linear-gradient(90deg, #7717bf 0%, #6815ac 50%, #562e90 100%);
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentLeft h2 {
  font-size: 1.25vw;
  color: #ffffff;
  margin-bottom: 0.5vw;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentLeft h2 {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
    text-align: center;
    margin-bottom: 5px;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentLeft p {
  font-size: 1.11vw;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentLeft p {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
    font-weight: 300;
    text-align: center;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight {
  background-color: rgba(104, 4, 191, 0.0392156863);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 2.08vw 3.47vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul {
  display: flex;
  color: #ffffff;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul {
    flex-direction: column;
    gap: 20px;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li {
  padding-right: 2.08vw;
  margin-right: 2.08vw;
  border-right: 1px solid rgba(255, 255, 255, 0.3764705882);
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li {
    border: 0;
    padding: 20px 25px;
    margin: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1019607843);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li:last-child {
    padding: 20px 25px;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .visitors {
  font-size: 2.08vw;
  font-weight: 700;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .visitors {
    font-size: 30px;
    text-align: center;
    line-height: 35px;
    margin-bottom: 10px;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .visitorsText {
  font-size: 0.97vw;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .visitorsText {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }
}
.aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .business {
  font-size: 0.97vw;
  color: #03F87E;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentBoxInner .contentRight ul li .business {
    font-size: 14px;
    text-align: center;
  }
}
.aboutPage .aboutBanner .contentBox .triangle {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 100%;
  height: 6.74vw;
  background: #7717bf;
  background: linear-gradient(90deg, #7717bf 0%, #6815ac 50%, #562e90 100%);
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .triangle {
    display: block;
  }
}
.aboutPage .aboutBanner .contentBox .contentboxShape1 {
  width: 23px;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentboxShape1 {
    display: block;
  }
}
.aboutPage .aboutBanner .contentBox .contentboxShape1 img {
  display: block;
  width: 100%;
}
.aboutPage .aboutBanner .contentBox .contentboxShape2 {
  position: absolute;
  width: 150px;
  bottom: 0;
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentboxShape2 {
    display: block;
  }
}
.aboutPage .aboutBanner .contentBox .contentboxShape2 img {
  display: block;
  width: 100%;
}
.aboutPage .aboutBanner .contentBox .contentboxShape3 {
  width: 84px;
  position: absolute;
  right: 0;
  bottom: 40vw;
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutBanner .contentBox .contentboxShape3 {
    display: block;
  }
}
.aboutPage .aboutBanner .contentBox .contentboxShape3 img {
  display: block;
  width: 100%;
}
.aboutPage .aboutMain {
  padding: 4.24vw 11.67vw 20vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain {
    padding: 20px 45px 20vw;
    position: relative;
  }
}
.aboutPage .aboutMain .inner h3 {
  font-size: 2.22vw;
  color: #3C276F;
  margin-bottom: 1.39vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.aboutPage .aboutMain .inner p {
  color: #71717A;
  font-size: 1.39vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner p {
    font-size: 18px;
    line-height: 23px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap {
  margin-top: 4.86vw;
  display: flex;
  gap: 2.08vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap {
    margin-top: 26px;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    position: relative;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li {
  border-radius: 0.56vw;
  background: #ffffff;
  padding: 2.43vw 2.78vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li {
    padding: 35px 40px;
    border-radius: 8px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li .logo {
  margin-bottom: 1.39vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li .logo {
    margin-bottom: 20px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li .logo img {
  display: block;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li .logo img {
    max-width: 100%;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li .logo img.ottplay {
  width: 14.65vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li .logo img.ottplay {
    width: 211px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li .logo img.slurrp {
  width: 11.18vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li .logo img.slurrp {
    width: 161px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li .logo img.mintgenie {
  width: 12.5vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li .logo img.mintgenie {
    width: 180px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li h4 {
  font-size: 1.25vw;
  line-height: 1.67vw;
  color: #3C276F;
  margin-bottom: 1.39vw;
  padding-bottom: 1.39vw;
  position: relative;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li h4::after {
  content: "";
  width: 3.472vw;
  height: 2px;
  background: #ED3C95;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li h4::after {
    width: 50px;
  }
}
.aboutPage .aboutMain .inner .cardsWrap li p {
  color: #737373;
  font-size: 0.97vw;
  line-height: 1.39vw;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .inner .cardsWrap li p {
    font-size: 16px;
    line-height: 23px;
  }
}
.aboutPage .aboutMain .Mwebshape1 {
  width: 111px;
  position: absolute;
  top: 25%;
  right: 0;
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .Mwebshape1 {
    display: block;
  }
}
.aboutPage .aboutMain .Mwebshape1 img {
  width: 100%;
  display: block;
}
.aboutPage .aboutMain .Mwebshape2 {
  width: 192px;
  position: absolute;
  top: 35%;
  left: 0;
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .Mwebshape2 {
    display: block;
  }
}
.aboutPage .aboutMain .Mwebshape2 img {
  width: 100%;
  display: block;
}
.aboutPage .aboutMain .Mwebshape3 {
  width: 111px;
  position: absolute;
  bottom: 10%;
  right: 0;
  display: none;
}
@media (max-width: 600px) {
  .aboutPage .aboutMain .Mwebshape3 {
    display: block;
  }
}
.aboutPage .aboutMain .Mwebshape3 img {
  width: 100%;
  display: block;
}

.careersPage {
  padding-bottom: 20vw;
}
.careersPage .innerBanner .bannerContent {
  padding-bottom: 2vw;
}
.careersPage .careersMain {
  padding: 0 13.89vw;
  margin-top: -6.74vw;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .careersPage .careersMain {
    padding: 0 40px;
  }
}
.careersPage .careersMain ul {
  display: flex;
  justify-content: space-between;
  gap: 2.08vw;
}
@media (max-width: 600px) {
  .careersPage .careersMain ul {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 25px;
  }
}
.careersPage .careersMain ul li {
  padding: 2.43vw 2.78vw;
  background: #ffffff;
  border-radius: 0.56vw;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  flex: 1;
}
@media (max-width: 600px) {
  .careersPage .careersMain ul li {
    padding: 35px 40px;
    border-radius: 8px;
  }
}
.careersPage .careersMain ul li h2 {
  font-size: 1.11vw;
  line-height: 1.67vw;
  color: #252B42;
  margin-bottom: 1.39vw;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .careersPage .careersMain ul li h2 {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.careersPage .careersMain ul li h2::after {
  content: "";
  width: 3.47vw;
  height: 2px;
  background: #ED3C95;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .careersPage .careersMain ul li h2::after {
    width: 50px;
  }
}
.careersPage .careersMain ul li p {
  font-size: 0.97vw;
  line-height: 1.39vw;
  color: #737373;
}
@media (max-width: 600px) {
  .careersPage .careersMain ul li p {
    font-size: 14px;
    line-height: 20px;
  }
}

.casestudiesInternal {
  padding-bottom: 20vw;
}
.casestudiesInternal .caseStudiesTabs {
  position: relative;
  bottom: -3.47vw;
}
.casestudiesInternal .mainSec {
  padding: 0 13.75vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec {
    padding: 25px 32px 0;
  }
}
.casestudiesInternal .mainSec > ul {
  display: flex;
  flex-direction: column;
  gap: 3.47vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul {
    gap: 24px;
    padding-bottom: 20px;
  }
}
.casestudiesInternal .mainSec > ul > li {
  display: flex;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  border-radius: 0.56vw;
  overflow: hidden;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li {
    flex-direction: column;
    border-radius: 8px;
    padding: 35px 40px;
    gap: 20px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 {
  width: 50%;
  background: #ffffff;
  padding: 2.43vw 2.78vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 {
    width: 100%;
    padding: 0;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo {
  margin-bottom: 1.39vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo {
    margin-bottom: 20px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img {
  display: block;
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.ottplay {
  width: 14.58vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.ottplay {
    width: 210px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.slurrp {
  width: 7.01vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.slurrp {
    width: 161px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.mintgenie {
  width: 9.31vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.mintgenie {
    width: 180px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.htschool {
  width: 10.35vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.htschool {
    width: 150px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.htTimeless {
  width: 7.78vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.htTimeless {
    width: 148px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 .logo img.upublish {
  width: 9.86vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 .logo img.upublish {
    width: 142px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 h4 {
  font-size: 1.25vw;
  line-height: 1.67vw;
  color: #3C276F;
  margin-bottom: 1.39vw;
  padding-bottom: 1.39vw;
  position: relative;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 h4::after {
  content: "";
  width: 3.472vw;
  height: 2px;
  background: #ED3C95;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 h4::after {
    width: 50px;
  }
}
.casestudiesInternal .mainSec > ul > li .box1 p {
  color: #737373;
  font-size: 0.97vw;
  line-height: 1.39vw;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box1 p {
    font-size: 16px;
    line-height: 23px;
  }
}
.casestudiesInternal .mainSec > ul > li .box2 {
  width: 50%;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box2 {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
}
.casestudiesInternal .mainSec > ul > li .box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li .box2 img {
    display: block;
  }
}
.casestudiesInternal .mainSec > ul > li:nth-child(even) .box2 {
  order: 1;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li:nth-child(even) .box2 {
    order: 2;
  }
}
.casestudiesInternal .mainSec > ul > li:nth-child(even) .box1 {
  order: 2;
}
@media (max-width: 600px) {
  .casestudiesInternal .mainSec > ul > li:nth-child(even) .box1 {
    order: 1;
  }
}

.successStoriePage {
  padding-bottom: 20vw;
}
.successStoriePage .caseStudiesTabs {
  margin-top: 2.08vw;
}
@media (max-width: 600px) {
  .successStoriePage .caseStudiesTabs {
    margin-top: 25px;
  }
}
.successStoriePage .problemState {
  padding: 0 10.69vw;
}
@media (max-width: 600px) {
  .successStoriePage .problemState {
    padding: 0 40px;
    margin-bottom: 24px;
  }
}
.successStoriePage .problemState .inner {
  display: flex;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner {
    flex-direction: column;
    gap: 27px;
  }
}
.successStoriePage .problemState .inner .left {
  padding-top: 4vw;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner .left {
    padding: 0;
  }
}
.successStoriePage .problemState .inner .left h3 {
  font-size: 2.78vw;
  line-height: 3.78vw;
  position: relative;
  padding-left: 3vw;
  margin-bottom: 1vw;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner .left h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
.successStoriePage .problemState .inner .left h3::before {
  content: "";
  position: absolute;
  width: 1vw;
  height: 100%;
  border-radius: 2vw;
  background: #B76BD6;
  left: 0;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner .left h3::before {
    width: 6px;
  }
}
.successStoriePage .problemState .inner .left p {
  font-size: 2.08vw;
  color: #6C7177;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner .left p {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
  }
}
.successStoriePage .problemState .inner .right {
  width: 28.89vw;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .successStoriePage .problemState .inner .right {
    width: 100%;
    padding-bottom: 15px;
  }
}
.successStoriePage .problemState .inner .right img {
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5647058824));
  display: block;
  width: 100%;
}
.successStoriePage .workScope {
  padding: 0 10.69vw;
  margin-bottom: 9.24vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope {
    padding: 0 40px;
    margin-bottom: 47px;
  }
}
.successStoriePage .workScope h3 {
  font-size: 2.78vw;
  line-height: 3.78vw;
  position: relative;
  padding-left: 3vw;
  margin-bottom: 4.86vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
.successStoriePage .workScope h3::before {
  content: "";
  position: absolute;
  width: 1vw;
  height: 100%;
  border-radius: 2vw;
  background: #B76BD6;
  left: 0;
}
@media (max-width: 600px) {
  .successStoriePage .workScope h3::before {
    width: 6px;
  }
}
.successStoriePage .workScope .scopeWorkShape1 {
  width: 19.44vw;
  position: absolute;
  top: 2vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope .scopeWorkShape1 {
    display: none;
  }
}
.successStoriePage .workScope .scopeWorkShape1 img {
  width: 100%;
  display: block;
}
.successStoriePage .workScope ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5vw;
  margin-bottom: 4.86vw;
  position: relative;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
    grid-row-gap: 30px;
  }
}
.successStoriePage .workScope ul li {
  display: flex;
  flex-direction: column;
  gap: 1.94vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul li {
    gap: 12px;
  }
}
.successStoriePage .workScope ul li .icon {
  display: flex;
  justify-content: center;
}
.successStoriePage .workScope ul li .icon img {
  height: 5.83vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul li .icon img {
    height: 52px;
  }
}
.successStoriePage .workScope ul li p {
  font-size: 1.94vw;
  text-align: center;
  color: #262D4A;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul li p {
    font-size: 16px;
  }
}
.successStoriePage .workScope ul li.scopeWorkShape2 {
  width: 34.31vw;
  position: absolute;
  right: -10.69vw;
  bottom: 0;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul li.scopeWorkShape2 {
    display: none;
  }
}
.successStoriePage .workScope ul li.scopeWorkShape2 img {
  display: block;
  width: 100%;
}
.successStoriePage .workScope ul li.mwebScopeWorkShape1 {
  width: 111px;
  position: absolute;
  right: -40px;
  display: none;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul li.mwebScopeWorkShape1 {
    display: block;
  }
}
.successStoriePage .workScope ul li.mwebScopeWorkShape1 img {
  display: block;
  width: 100%;
}
.successStoriePage .workScope ul.workScopeFlow {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul.workScopeFlow {
    grid-template-columns: repeat(2, 1fr);
  }
}
.successStoriePage .workScope ul.workScopeFlow li p {
  font-size: 1.74vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope ul.workScopeFlow li p {
    font-size: 16px;
  }
}
.successStoriePage .workScope .workScopeBanner {
  padding: 0 5.83vw;
}
@media (max-width: 600px) {
  .successStoriePage .workScope .workScopeBanner {
    padding: 0;
  }
}
.successStoriePage .workScope .workScopeBanner img {
  display: block;
  width: 100%;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies {
    padding-bottom: 0;
    position: relative;
    overflow: initial;
  }
}
.successStoriePage .otherCaseStudies h3 {
  font-size: 3.333vw;
  color: #3C276F;
  font-weight: bold;
  margin-bottom: 2.5vw;
  text-align: center;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider {
  width: 55vw;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider {
    padding: 0;
    width: 100%;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .slick-track {
  display: flex !important;
  padding-bottom: 1vw;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .slick-track {
    display: flex !important;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .slick-slide {
  padding: 0 1vw;
  height: initial !important;
  display: flex;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .slick-slide {
    padding: 0 12px;
  }
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 4px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .slick-dots li {
  width: 8px;
  height: 8px;
  background: #A55BE9;
  border-radius: 50%;
  transition: 0.5s;
}
.successStoriePage .otherCaseStudies .successStorieSlider .slick-dots li.slick-active {
  width: 30px;
  border-radius: 20px;
  background: #412477;
}
.successStoriePage .otherCaseStudies .successStorieSlider .slick-dots li button {
  display: none;
}
.successStoriePage .otherCaseStudies .successStorieSlider a {
  display: block;
  background: #ffffff;
  border-radius: 1vw;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider a {
    border-radius: 10px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .imgbox {
  background: #F1F1F1;
  overflow: hidden;
  border-radius: 1vw 1vw 0 0;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .imgbox {
    border-radius: 10px 10px 0 0;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .imgbox img {
  width: 100%;
  display: block;
}
.successStoriePage .otherCaseStudies .successStorieSlider .contentBox {
  padding: 1.667vw;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .contentBox {
    padding: 20px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .contentBox h4 {
  font-size: 1.94vw;
  color: #3C276F;
  margin-bottom: 0.833vw;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .contentBox h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.successStoriePage .otherCaseStudies .successStorieSlider .contentBox p {
  font-size: 1.111vw;
  color: #68718B;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .successStorieSlider .contentBox p {
    font-size: 14px;
  }
}
.successStoriePage .otherCaseStudies .mwebScopeWorkShape2 {
  width: 111px;
  position: absolute;
  right: 0;
  top: -50px;
  display: none;
}
@media (max-width: 600px) {
  .successStoriePage .otherCaseStudies .mwebScopeWorkShape2 {
    display: block;
  }
}
.successStoriePage .otherCaseStudies .mwebScopeWorkShape2 img {
  display: block;
  width: 100%;
}
.successStoriePage .projectHighlights {
  padding: 0 10.69vw;
  margin-bottom: 9.24vw;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights {
    margin-top: 30px;
    margin-bottom: 47px;
    padding: 0 40px;
  }
}
.successStoriePage .projectHighlights h3 {
  font-size: 2.78vw;
  line-height: 3.78vw;
  position: relative;
  padding-left: 3vw;
  margin-bottom: 4.86vw;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
.successStoriePage .projectHighlights h3::before {
  content: "";
  position: absolute;
  width: 1vw;
  height: 100%;
  border-radius: 2vw;
  background: #B76BD6;
  left: 0;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights h3::before {
    width: 6px;
  }
}
.successStoriePage .projectHighlights ul {
  display: flex;
  grid-gap: 4.17vw;
  padding: 0 3vw;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights ul {
    flex-direction: column;
    gap: 30px;
  }
}
.successStoriePage .projectHighlights ul li {
  display: flex;
  flex-direction: column;
  gap: 1.94vw;
  flex: 1;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights ul li {
    gap: 17px;
  }
}
.successStoriePage .projectHighlights ul li .icon {
  display: flex;
  justify-content: center;
}
.successStoriePage .projectHighlights ul li .icon img {
  height: 5.83vw;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights ul li .icon img {
    height: 52px;
  }
}
.successStoriePage .projectHighlights ul li p {
  font-size: 1.94vw;
  text-align: center;
  color: #262D4A;
}
@media (max-width: 600px) {
  .successStoriePage .projectHighlights ul li p {
    font-size: 16px;
  }
}
.successStoriePage .journey {
  padding: 0 10.69vw;
  padding-bottom: 9.24vw;
}
@media (max-width: 600px) {
  .successStoriePage .journey {
    padding: 0 40px;
    padding-bottom: 47px;
    overflow: initial;
  }
}
.successStoriePage .journey h3 {
  font-size: 2.78vw;
  line-height: 3.78vw;
  position: relative;
  padding-left: 3vw;
  margin-bottom: 4.86vw;
}
@media (max-width: 600px) {
  .successStoriePage .journey h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
.successStoriePage .journey h3::before {
  content: "";
  position: absolute;
  width: 1vw;
  height: 100%;
  border-radius: 2vw;
  background: #B76BD6;
  left: 0;
}
@media (max-width: 600px) {
  .successStoriePage .journey h3::before {
    width: 6px;
  }
}
.successStoriePage .journey .scopeWorkShape1 {
  width: 19.44vw;
  position: absolute;
  top: 2vw;
}
@media (max-width: 600px) {
  .successStoriePage .journey .scopeWorkShape1 {
    display: none;
  }
}
.successStoriePage .journey .scopeWorkShape1 img {
  width: 100%;
  display: block;
}
.successStoriePage .journey .scopeWorkShape2 {
  width: 34.31vw;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 600px) {
  .successStoriePage .journey .scopeWorkShape2 {
    display: none;
  }
}
.successStoriePage .journey .scopeWorkShape2 img {
  width: 100%;
  display: block;
}
.successStoriePage .journey ul {
  display: flex;
  justify-content: center;
  gap: 4.17vw;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul {
    flex-direction: column;
    padding-left: 20px;
  }
}
.successStoriePage .journey ul li {
  position: relative;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.successStoriePage .journey ul li .circle {
  width: 15.69vw;
  height: 15.69vw;
  border-radius: 50%;
  border: 0.4vw solid #000000;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.7vw;
  margin-bottom: 1.11vw;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4784313725);
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .circle {
    width: 119px;
    height: 119px;
    border-width: 3px;
    flex-shrink: 0;
  }
}
.successStoriePage .journey ul li .circle h4 {
  font-size: 1.67vw;
  color: #5E5E5E;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .circle h4 {
    font-size: 18px;
  }
}
.successStoriePage .journey ul li .circle .brandLogo {
  width: 4.72vw;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .circle .brandLogo {
    width: 46px;
  }
}
.successStoriePage .journey ul li .circle .brandLogo img {
  display: block;
  width: 100%;
}
.successStoriePage .journey ul li .heading h5 {
  text-align: center;
  font-size: 1.81vw;
  font-weight: 400;
  color: #2B2C30;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .heading h5 {
    font-size: 20px;
    text-align: left;
  }
}
.successStoriePage .journey ul li .heading p {
  text-align: center;
  font-size: 1.18vw;
  font-weight: 400;
  color: #2B2C30;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .heading p {
    font-size: 14px;
    text-align: left;
  }
}
.successStoriePage .journey ul li.sony .circle {
  border-color: #B3B3BA;
}
.successStoriePage .journey ul li.nammaflix .circle {
  border-color: #28F87E;
}
.successStoriePage .journey ul li.kccl .circle {
  border-color: #F8288C;
}
.successStoriePage .journey ul li.rvr .circle {
  border-color: #B76BD6;
}
.successStoriePage .journey ul li .arrow {
  width: 3.47vw;
  position: absolute;
  left: 100%;
  top: 35%;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li .arrow {
    left: 50px;
    bottom: -8px;
    top: inherit;
    transform: rotate(90deg);
    width: 20px;
  }
}
.successStoriePage .journey ul li .arrow img {
  display: block;
  width: 100%;
}
.successStoriePage .journey ul li.mwebScopeWorkShape1 {
  width: 111px;
  position: absolute;
  right: 0;
  display: none;
  top: -50px;
}
@media (max-width: 600px) {
  .successStoriePage .journey ul li.mwebScopeWorkShape1 {
    display: block;
  }
}
.successStoriePage .journey ul li.mwebScopeWorkShape1 img {
  display: block;
  width: 100%;
}/*# sourceMappingURL=styles.css.map */