:root {
  --color-white: #ffffff;
  --color-white-1: #FDFDFD;
  --color-bg: #f8f8ff;
  --color-black: #000000;
  --color-black-1: #374151;
  --color-black-2: #242424;
  --color-grey: #545461;
  --color-grey-1: #D9D9D9;
  --color-grey-2: #7A7A7A;
  --color-grey-3: #E3E3E3;
  --color-grey-4: #4A4A4A;
  --color-blue: #312783;
  --color-blue-1: #403CB1;
  --color-blue-2: #3E2F81;
  --color-blue-3: #050432;
  --color-blue-drk: #001B4E;
  --color-blue-drk-1: hsl(225, 54%, 27%);
  --color-purple: #965FD4;
  --color-purple-lgt: #E9D2FF;
  --color-purple-1: #45479D1A;
  --color-purple-2: #DDBAFF;
  --color-purple-3: #EFDEFF;
  --color-purple-4: #A671D9;
  --color-purple-lgt-1: #A060B2;
  --color-purple-drk: #623C77;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 300;
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Sofia Pro Bold";
  src: url("/assets/fonts/SofiaPro-Bold.woff2") format("woff2"), url("/assets/fonts/SofiaPro-Bold.woff") format("woff");
  font-style: Bold;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/assets/fonts/SofiaPro.woff2") format("woff2"), url("/assets/fonts/SofiaPro.woff") format("woff");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro medium";
  src: url("/assets/fonts/SofiaPro-Medium.woff2") format("woff2"), url("/assets/fonts/SofiaPro-Medium.woff") format("woff");
  font-style: medium;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro light";
  src: url("/assets/fonts/SofiaPro-Light.woff2") format("woff2"), url("/assets/fonts/SofiaPro-Light.woff") format("woff");
  font-style: medium;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro ultra light";
  src: url("/assets/fonts/SofiaPro-UltraLight.woff2") format("woff2"), url("/assets/fonts/SofiaPro-UltraLight.woff") format("woff");
  font-style: medium;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro bold";
  src: url("/assets/fonts/SofiaPro-Bold.woff2") format("woff2"), url("/assets/fonts/SofiaPro-Bold.woff") format("woff");
  font-style: medium;
  font-weight: normal;
  font-display: swap;
}
[data-aos=fade-up] {
  transform: translate3d(0, 60px, 0); /* smaller upward shift */
}

[data-aos=fade-up].aos-animate {
  transform: translate3d(0, 0, 0);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Sofia Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
  min-height: 100%;
  color: var(--color-black);
  background-color: var(--color-white);
}

a,
button,
input {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

p,
li {
  margin-bottom: 0;
}

button {
  border: 0;
  background-color: transparent;
}

*:focus {
  outline: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

::-webkit-scrollbar {
  width: 6px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-grey);
  border-radius: 10px;
}

.desk-visible {
  display: block;
}

.only-mobile {
  display: none;
}

.hide-mobile-tablet {
  display: block;
}

.only-mobile-tablet {
  display: none;
}

@media (max-width: 1023px) {
  .content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-mobile-tablet {
    display: none;
  }
  .only-mobile-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .desk-visible {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
.pm-btn {
  background: linear-gradient(90deg, #403CB1 0%, #312783 100%);
  display: inline-block;
  padding: 8px 18px;
  color: #fff;
  font-family: "Sofia Pro", sans-serif;
  font-size: 17px;
  line-height: 27px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  max-height: -moz-max-content;
  max-height: max-content;
}
.pm-btn span svg {
  width: 28px;
  height: 28px;
  margin-right: 5px;
}
.pm-btn:hover {
  background: linear-gradient(10deg, #403CB1 0%, #312783 100%);
}

.pm-btn-1 .button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  color: #312783;
  border-radius: 10px;
  font-weight: 600;
  padding: 8px 18px;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-size: 18px;
  line-height: 28px;
  width: 335px;
  font-weight: 400;
  justify-content: space-between;
  font-family: "Sofia Pro", sans-serif;
}
.pm-btn-1 .button__icon-wrapper {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  position: relative;
  color: #fff;
  background: linear-gradient(142.28deg, #3C3EA9 11.13%, #181943 98.85%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pm-btn-1 .button:hover {
  background-color: #fff;
}
.pm-btn-1 .button:hover .button__icon-wrapper {
  color: #fff;
}
.pm-btn-1 .button__icon-svg--copy {
  position: absolute;
  transform: translate(-180%, 150%);
}
.pm-btn-1 .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
.pm-btn-1 .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -185%);
}

.pm-btn-2 {
  background: var(--color-white);
  display: inline-block;
  padding: 8px 18px;
  color: var(--color-blue);
  font-family: "Sofia Pro", sans-serif;
  font-size: 17px;
  line-height: 27px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  max-height: -moz-max-content;
  max-height: max-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.pm-btn-2 span svg {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}
.pm-btn-2:hover {
  background: linear-gradient(10deg, #403CB1 0%, #312783 100%);
  color: var(--color-white);
}
.pm-btn-2:hover span svg {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .pm-btn-1 .button {
    width: 100%;
  }
}
.pm-btn-blu {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.3s ease-in-out;
}
.pm-btn-blu img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.pm-btn-blu:hover {
  opacity: 0.9;
}
.pm-btn-blu:hover img {
  transform: translateX(3px);
}

.pm-btn-3 .button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #44489E;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  padding: 8px 18px;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-size: 18px;
  line-height: 28px;
  width: 335px;
  font-weight: 400;
  justify-content: space-between;
  font-family: "Sofia Pro", sans-serif;
  border: 2px solid transparent;
}
.pm-btn-3 .button__icon-wrapper {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  position: relative;
  color: #312783;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotate(45deg);
}
.pm-btn-3 .button:hover {
  background-color: #fff;
  color: #312783;
  border: 2px solid #312783;
}
.pm-btn-3 .button:hover .button__icon-wrapper {
  color: #fff;
  background-color: #312783;
}
.pm-btn-3 .button__icon-svg--copy {
  position: absolute;
  transform: translate(-180%, 150%);
}
.pm-btn-3 .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
.pm-btn-3 .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -185%);
}

.pm-btn-4 {
  border: 1.5px solid var(--color-blue);
  border-radius: 10px;
  color: var(--color-blue);
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 26px;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}
.pm-btn-4 svg {
  width: 20px;
  height: 20px;
}
.pm-btn-4:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.pm-btn-5 {
  background: rgba(60, 62, 169, 0.1019607843);
  padding: 8px 20px;
  display: inline-block;
  font-size: 15px;
  line-height: 25px;
  color: var(--color-blue);
  border-radius: 24px;
}
.pm-btn-5 svg {
  width: 18px;
  height: 18px;
}

.pm-btn-6 {
  background: var(--color-white);
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.5019607843);
  border-radius: 8px;
}
.pm-btn-6 svg {
  width: 18px;
  height: 18px;
}

.pm-heading .inner {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 25px;
}
.pm-heading .inner img {
  width: auto;
  height: 30px;
}
.pm-heading .inner p.head {
  color: var(--color-black);
  font-size: 20px;
  line-height: 22px;
}
.pm-heading p.grey {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  width: 48%;
}
.pm-heading h1 {
  font-size: 56px;
  line-height: 66px;
  padding: 20px 0;
  color: var(--color-white);
  width: 90%;
}
.pm-heading h2 {
  color: #312783;
  font-size: 40px;
  line-height: 48px;
  padding: 20px 0;
}
.pm-heading h2 span {
  color: #965FD4;
}
.pm-heading h2.wht {
  color: var(--color-white);
}
.pm-heading h2.blk {
  color: var(--color-black);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-heading h2, .pm-heading p {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .pm-heading h2, .pm-heading p {
    font-size: 32px;
    line-height: 38px;
  }
}
.pm-casestdy-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pm-casestdy-tile__logo {
  width: 70px;
  height: auto;
}
.pm-casestdy-tile__logo img {
  width: 100%;
  height: 100%;
}
.pm-casestdy-tile__head {
  color: var(--color-grey);
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
.pm-casestdy-tile__num {
  color: var(--color-black);
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  padding: 10px 0;
}

.pm-spacer {
  background-color: var(--color-bg);
  height: 100px;
}

.pm-spacer-1 {
  background-color: var(--color-bg);
  height: 60px;
}

.pm-case-study-card {
  border-radius: 24px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.pm-case-study-card__outer {
  padding: 25px;
}
.pm-case-study-card__logo {
  width: 50px;
  height: 50px;
}
.pm-case-study-card__logo img {
  width: 100%;
  height: 100%;
}
.pm-case-study-card__img {
  margin: 40px auto;
  display: block;
  width: 165px;
  height: auto;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
}
.pm-case-study-card__img img {
  width: 100%;
  height: 100%;
}
.pm-case-study-card__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pm-case-study-card__head {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-black);
  font-weight: 500;
}
.pm-case-study-card__sub {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 30px;
}
.pm-case-study-card__arw {
  width: 24px;
  height: 24px;
  transform: rotate(-35deg);
  transition: all 0.3s ease-in-out;
}
.pm-case-study-card__arw img {
  width: 100%;
  height: 100%;
}
.pm-case-study-card:hover {
  --tw-shadow: 0px 0px 22px rgba(152, 111, 176, .16);
  --tw-shadow-colored: 0px 0px 22px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.pm-case-study-card:hover .pm-case-study-card__arw {
  transform: rotate(0deg);
}
.pm-case-study-card:hover .pm-case-study-card__img {
  transform: scale(1.04);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-case-study-card__outer {
    padding: 20px;
  }
}
.pm-solutions-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  padding: 26px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pm-solutions-card__sub {
  color: var(--color-blue);
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
}
.pm-solutions-card__inner {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 15px;
}
.pm-solutions-card__w-cnt-1 {
  width: 50px;
  height: 5px;
  background-color: #A671D9;
  border-radius: 20px;
}
.pm-solutions-card__w-cnt-2 {
  width: 10px;
  height: 5px;
  background-color: #A671D9;
  border-radius: 20px;
}
.pm-solutions-card__cnt {
  color: var(--color-grey);
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 20px 0 0;
  min-height: 75px;
}

.pm-industry-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  padding: 26px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pm-industry-card__img {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
}
.pm-industry-card__img img {
  width: 100%;
  height: 100%;
}
.pm-industry-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
  text-align: center;
  padding: 15px 0 0;
  min-height: 62px;
}

.pm-inner-banner {
  width: 100%;
  height: 525px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 30px 0;
}
.pm-inner-banner__outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 430px;
}
.pm-inner-banner h1 {
  font-size: 55px;
  line-height: 65px;
  color: var(--color-white);
  font-weight: 400;
  padding-bottom: 35px;
}
.pm-inner-banner__img {
  width: 45%;
  height: auto;
}
.pm-inner-banner__img img {
  width: 100%;
  height: 100%;
}
.pm-inner-banner__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 10px;
}
.pm-inner-banner__inner a, .pm-inner-banner__inner span {
  color: var(--color-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Sofia Pro", sans-serif;
}
.pm-inner-banner__inner a.lgt {
  font-family: "Sofia Pro light", sans-serif;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-inner-banner__outer {
    height: 370px;
  }
  .pm-inner-banner {
    height: 485px;
  }
}
@media (max-width: 767px) {
  .pm-inner-banner {
    height: 430px;
  }
  .pm-inner-banner__outer {
    height: 320px;
  }
  .pm-inner-banner__img {
    display: none;
  }
  .pm-inner-banner__inner {
    flex-wrap: wrap;
  }
}
.pm-abt-tab-sec {
  padding: 60px 0 30px;
}
.pm-abt-tab-sec.grey {
  margin: 0;
  padding: 30px 0;
  background-color: var(--color-bg);
}
.pm-abt-tab-sec.pb-40 {
  padding-bottom: 80px;
}
.pm-abt-tab-sec__bg {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 40px;
}
.pm-abt-tab-sec__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white) !important;
  padding: 20px 0 60px;
}
.pm-abt-tab-sec__outer {
  gap: 18%;
  height: 100%;
  align-items: flex-start !important;
  padding: 35px 0;
}
.pm-abt-tab-sec__w-30 {
  width: 35%;
}
.pm-abt-tab-sec .pm-heading h2 {
  padding-bottom: 50px;
}
.pm-abt-tab-sec__w-40 {
  width: 40%;
}
.pm-abt-tab-sec__w-40 p {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
}
.pm-abt-tab-sec .tab-content {
  background-color: var(--color-white);
  padding: 35px 30px 45px;
  border-radius: 24px;
}
.pm-abt-tab-sec .nav-pills .nav-link.active, .pm-abt-tab-sec .nav-pills .show > .nav-link {
  background-color: var(--color-white);
  color: var(--color-blue);
  border-radius: 16px;
  margin-top: -1px;
}
.pm-abt-tab-sec .nav-pills .nav-link {
  color: var(--color-white);
  padding: 20px 20px 0 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.pm-abt-tab-sec .nav-pills .nav-link span {
  height: 1px;
  background-color: var(--color-white);
  width: 90%;
  margin: auto;
  display: block;
  margin-top: 20px;
}
.pm-abt-tab-sec .nav-pills .nav-link:last-child span {
  height: 0;
}
.pm-abt-tab-sec__head {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: var(--color-blue);
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .pm-abt-tab-sec__bg, .pm-abt-tab-sec__outer {
    height: 100%;
    flex-direction: column;
    gap: 30px;
  }
  .pm-abt-tab-sec__w-30, .pm-abt-tab-sec__w-40 {
    width: 100%;
  }
  .pm-abt-tab-sec__bg {
    padding: 20px;
  }
  .pm-abt-tab-sec.pb-40 {
    padding-top: 0;
  }
}
.pm-cntct-form .form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  width: 100%;
  max-width: 100%;
}
.pm-cntct-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pm-cntct-form .form-group {
  display: flex;
  gap: 1rem;
}
.pm-cntct-form .form-group > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pm-cntct-form label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--color-blue);
}
.pm-cntct-form input[type=text],
.pm-cntct-form input[type=email],
.pm-cntct-form input[type=tel],
.pm-cntct-form input[type=number],
.pm-cntct-form textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}
.pm-cntct-form textarea {
  resize: vertical;
  min-height: 100px;
}
.pm-cntct-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pm-cntct-form .checkbox-group input {
  margin-top: 5px;
}
.pm-cntct-form .consent {
  font-size: 16px;
  line-height: 24px;
  color: #545461;
}
.pm-cntct-form .captcha {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pm-cntct-form .captcha-box {
  background-color: #f3f3f3;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #666;
}
.pm-cntct-form .submit-btn {
  background-color: #4a28ec;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.pm-cntct-form .submit-btn:hover {
  background-color: #371ec1;
}
.pm-cntct-form .pm-btn {
  width: 30%;
}
.pm-cntct-form__recptch {
  width: 250px;
  height: auto;
}
.pm-cntct-form__recptch img {
  width: 100%;
  height: 100%;
}

.pm-crtve-bnr-slider {
  background-color: var(--color-blue-drk-1);
  border-radius: 20px;
}
.pm-crtve-bnr-slider__slider {
  padding: 35px 25px 25px;
}
.pm-crtve-bnr-slider__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pm-crtve-bnr-slider__outer .head {
  color: var(--color-white);
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 6px;
}
.pm-crtve-bnr-slider__outer .sub {
  color: var(--color-grey-1);
  font-size: 14px;
  line-height: 14px;
  padding-bottom: 10px;
}
.pm-crtve-bnr-slider__outer .quote {
  width: 70%;
  height: auto;
  margin: auto;
}
.pm-crtve-bnr-slider__outer .quote img {
  width: 100%;
  height: 100%;
}
.pm-crtve-bnr-slider__outer__cnt {
  color: var(--color-white);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 25px 0 40px;
}
.pm-crtve-bnr-slider__outer__cnt a {
  text-decoration: underline;
  color: var(--color-white);
}
.pm-crtve-bnr-slider__w-80 {
  width: 80%;
  border-bottom: 1.5px solid #C0C0C0;
}
.pm-crtve-bnr-slider__w-20 {
  width: 20%;
}
.pm-crtve-bnr-slider .slick-dots {
  display: none;
}

.pm-avnu-crd-crtve {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 35px 25px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.pm-avnu-crd-crtve__logo {
  width: 55px;
  height: 55px;
}
.pm-avnu-crd-crtve__logo img {
  width: 100%;
  height: 100%;
}
.pm-avnu-crd-crtve .pm-solutions-card__inner {
  justify-content: flex-start;
}
.pm-avnu-crd-crtve__head {
  padding: 20px 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-black);
  display: inline-block;
}
.pm-avnu-crd-crtve__head svg {
  margin-left: 20px;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}
.pm-avnu-crd-crtve__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  min-height: 208px;
}
.pm-avnu-crd-crtve:hover {
  transform: scale(1.01);
}
.pm-avnu-crd-crtve:hover .pm-avnu-crd-crtve__head svg {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .pm-avnu-crd-crtve {
    padding: 20px;
  }
}
.pm-tech-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 45px;
  display: inline-block;
  width: calc(50% - 20px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}
.pm-tech-card__head {
  color: var(--color-black);
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  padding: 20px 0;
}
.pm-tech-card__cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
}
.pm-tech-card__cnt.padbot0 {
  padding-bottom: 0;
}
.pm-tech-card .pm-solutions-card__inner {
  justify-content: flex-start;
}
.pm-tech-card__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pm-tech-card__img {
  width: auto;
  height: 23px;
}
.pm-tech-card__img img {
  width: 100%;
  height: 100%;
}
.pm-tech-card:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .pm-tech-card {
    width: calc(100% - 0px);
    padding: 25px;
  }
}
.pm-tech-card-1 {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 45px;
  display: inline-block;
  width: calc(33.3% - 20px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}
.pm-tech-card-1__head {
  color: var(--color-black);
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  padding: 20px 0 0;
}
.pm-tech-card-1__cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding: 20px 0;
}
.pm-tech-card-1__cnt.padbot0 {
  padding-bottom: 0;
}
.pm-tech-card-1 .pm-solutions-card__inner {
  justify-content: flex-start;
  padding-top: 10px;
}
.pm-tech-card-1__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pm-tech-card-1__img {
  width: auto;
  height: 23px;
}
.pm-tech-card-1__img img {
  width: 100%;
  height: 100%;
}
.pm-tech-card-1:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
}
.pm-tech-card-1 .list {
  list-style-type: decimal;
  padding-left: 20px;
  padding-top: 20px;
}
.pm-tech-card-1 .list li {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 4px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-tech-card-1 {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pm-tech-card-1 {
    width: calc(100% - 20px);
    margin-bottom: 40px;
    padding: 25px;
  }
}
.pm-accord-crtve {
  background: var(--color-white);
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  padding: 30px;
}
.pm-accord-crtve__outer {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.pm-accord-crtve__outer h3 {
  font-size: 22px;
  line-height: 32px;
  color: var(--color-blue);
  padding: 15px 0;
  cursor: pointer;
  width: 100%;
  display: block;
}
.pm-accord-crtve__outer .brdr {
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  width: 100%;
}
.pm-accord-crtve__outer p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-grey);
  padding-bottom: 20px;
}
.pm-accord-crtve__line-out {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0;
}
.pm-accord-crtve__num {
  background-color: var(--color-blue-1);
  font-size: 16px;
  line-height: 16px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
}
.pm-accord-crtve__l-btm {
  width: 1px;
  background-color: #9b9b9b;
  height: 100%;
}

.pm-accord-crtve__outer:first-child .brdr {
  border-top: none;
}

.pm-accord-crtve__outer:last-child .brdr {
  border-bottom: none;
}

.pm-blog-crd {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 25px;
}
.pm-blog-crd.row-sec {
  flex-direction: row;
  width: 100%;
}
.pm-blog-crd.row-sec .pm-blog-crd__wht-sec {
  width: 65%;
}
.pm-blog-crd.row-sec .pm-blog-crd__img {
  width: 35%;
}
.pm-blog-crd.row-sec .pm-blog-crd__img img {
  border-top-right-radius: 0;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.pm-blog-crd.row-sec .pm-blog-crd__head {
  width: 80%;
}
.pm-blog-crd__img {
  width: 100%;
  height: auto;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
}
.pm-blog-crd__img img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-blog-crd__wht-sec {
  padding: 20px;
}
.pm-blog-crd__wht-sec .time {
  font-size: 14px;
  line-height: 16px;
  color: var(--color-grey);
}
.pm-blog-crd__wht-sec .dte {
  font-size: 14px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.6);
}
.pm-blog-crd__inner-out {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pm-blog-crd__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pm-blog-crd__inner span {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 35px;
}
.pm-blog-crd__btn {
  background-color: var(--color-purple-1);
  padding: 10px 15px;
  border-radius: 30px;
  color: var(--color-blue);
}
.pm-blog-crd__head {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-black);
  font-weight: 600;
  padding: 30px 0;
  width: 100%;
  min-height: 85px;
}
.pm-blog-crd__team-out {
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-blog-crd__team-out .head {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
  padding-bottom: 5px;
}
.pm-blog-crd__team-out .sub {
  color: var(--color-grey);
  font-size: 14px;
  line-height: 14px;
}
.pm-blog-crd__logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.pm-blog-crd__logo img {
  width: 100%;
  height: 100%;
}
.pm-blog-crd:hover {
  transform: scale(1.01);
}

@media (max-width: 767px) {
  .pm-blog-crd__head, .pm-blog-crd.row-sec .pm-blog-crd__head {
    width: 80%;
  }
  .pm-blog-crd.row-sec {
    flex-direction: column;
  }
  .pm-blog-crd.row-sec .pm-blog-crd__img, .pm-blog-crd.row-sec .pm-blog-crd__wht-sec {
    width: 100%;
  }
  .pm-blog-crd.row-sec .pm-blog-crd__img img {
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 0;
  }
}
.pm-tchngy-bnr-slider {
  position: relative;
  border-radius: 20px;
  padding: 0 10px;
}
.pm-tchngy-bnr-slider__img {
  width: 100%;
  height: auto;
  position: relative;
}
.pm-tchngy-bnr-slider__img img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}
.pm-tchngy-bnr-slider h2 {
  color: var(--color-white);
  font-size: 42px;
  line-height: 53px;
  font-weight: 500;
  position: absolute;
  bottom: 6%;
  left: 5%;
  width: 55%;
  font-family: "Sofia Pro bold", sans-serif;
}
.pm-tchngy-bnr-slider__btn-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 30px;
}
.pm-tchngy-bnr-slider__btn-out .rgt {
  position: absolute;
  right: 7%;
  top: 6%;
  cursor: pointer;
}
.pm-tchngy-bnr-slider__btn-out .rgt svg {
  color: #7C7C7C;
  width: 45px;
  height: 45px;
}
.pm-tchngy-bnr-slider__btn-out .rgt:active svg, .pm-tchngy-bnr-slider__btn-out .rgt:hover svg {
  color: #4144FF;
}
.pm-tchngy-bnr-slider__btn-out .lft {
  position: absolute;
  left: 7%;
  top: 6%;
  cursor: pointer;
}
.pm-tchngy-bnr-slider__btn-out .lft svg {
  color: #7C7C7C;
  width: 45px;
  height: 45px;
}
.pm-tchngy-bnr-slider__btn-out .lft:active svg, .pm-tchngy-bnr-slider__btn-out .lft:hover svg {
  color: #4144FF;
}
.pm-tchngy-bnr-slider .sliderContainer {
  position: relative;
}
.pm-tchngy-bnr-slider .banner-slider {
  width: 100%;
  position: relative;
}
.pm-tchngy-bnr-slider .slick-prev:before,
.pm-tchngy-bnr-slider .slick-next:before {
  color: black;
}
.pm-tchngy-bnr-slider .slick-dots {
  bottom: -30px;
}
.pm-tchngy-bnr-slider .progressBarContainer {
  position: absolute;
  top: 10%;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}
.pm-tchngy-bnr-slider .progressBarContainer div {
  display: block;
  width: 15%;
  min-width: 30px;
  max-width: 100px;
  padding: 0;
  cursor: pointer;
  margin-right: 10px;
  color: white;
}
.pm-tchngy-bnr-slider .progressBarContainer div:last-child {
  margin-right: 0;
}
.pm-tchngy-bnr-slider .progressBarContainer div span.progressBar {
  width: 100%;
  height: 7px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
}
.pm-tchngy-bnr-slider .progressBarContainer div span.progressBar .inProgress {
  background-color: #4144FF;
  width: 0%;
  min-width: 0%;
  max-width: 100%;
  height: 7px;
  border-radius: 10px;
}

.pm-accord-tech {
  border-top: 1px solid rgba(173, 174, 228, 0.3960784314);
  margin-bottom: 20px;
}
.pm-accord-tech__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.pm-accord-tech__outer.active .pm-accord-tech__arw img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.pm-accord-tech__inner {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pm-accord-tech__logo {
  width: 40px;
  height: auto;
}
.pm-accord-tech__logo img {
  width: 100%;
  height: 100%;
}
.pm-accord-tech__head {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.pm-accord-tech__arw {
  width: 25px;
  height: 25px;
}
.pm-accord-tech__arw img {
  width: 100%;
  height: 100%;
}
.pm-accord-tech__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding: 0 0 20px;
}

.pm-accord-tech-1 {
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
}
.pm-accord-tech-1__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.pm-accord-tech-1__outer.active .pm-accord-tech-1__toggle img {
  transform: rotate(45deg);
}
.pm-accord-tech-1__head {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  padding: 15px 0;
  color: var(--color-white);
}
.pm-accord-tech-1__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
  transition-delay: 0.8s;
  transition: all 0.3s ease;
}
.pm-accord-tech-1__toggle {
  width: 28px;
  height: 28px;
}
.pm-accord-tech-1__toggle img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.pm-accord-tech__cnt,
.pm-accord-tech-1__cnt {
  display: none;
  transition: all 0.3s ease;
}

.pm-accord-tech__cnt.active,
.pm-accord-tech-1__cnt.active {
  display: block;
}

.pm-career-accrd {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.pm-career-accrd__sec1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-career-accrd__sec1 .head {
  color: var(--color-black);
  font-size: 24px;
  line-height: 40px;
  margin: 0;
}
.pm-career-accrd__sec1 .toggle-icon {
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 30px;
}
.pm-career-accrd__sec1 .toggle-icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--color-black);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.pm-career-accrd__sec1 .toggle-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  background-color: var(--color-black);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease;
}
.pm-career-accrd .location {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-black);
  margin: 6px 0 18px;
}
.pm-career-accrd .location svg {
  width: 22px;
  height: 22px;
}
.pm-career-accrd__content {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
}
.pm-career-accrd__content .description {
  margin-bottom: 20px;
}
.pm-career-accrd__content .apply-exp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pm-career-accrd__content .apply-exp-row .apply-link {
  color: #403cb1;
  font-size: 18px;
  line-height: 28px;
}
.pm-career-accrd__content .apply-exp-row .apply-link svg {
  width: 20px;
  height: 20px;
}
.pm-career-accrd__content .apply-exp-row .experience {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}
.pm-career-accrd__content .apply-exp-row .experience .icon {
  margin-right: 6px;
}
.pm-career-accrd .pm-career-accrd__content.hidden {
  display: none;
}
.pm-career-accrd .toggle-icon {
  transition: transform 0.3s ease;
}
.pm-career-accrd .toggle-icon.active::before {
  transform: rotate(90deg);
}

@media (max-width: 767px) {
  .pm-career-accrd .location, .pm-career-accrd__content .apply-exp-row .apply-link {
    font-size: 16px;
  }
}
.pm-cstmr-card {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  background-color: var(--color-white);
  padding: 30px;
}
.pm-cstmr-card .pm-solutions-card__inner {
  justify-content: flex-start;
}
.pm-cstmr-card__head {
  padding: 15px 0;
  color: var(--color-black);
  font-size: 22px;
  line-height: 32px;
  width: 85%;
}
.pm-cstmr-card__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 20px;
}
.pm-cstmr-card__btn {
  color: var(--color-blue);
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.pm-cstmr-card__btn:hover {
  opacity: 0.9;
}

body {
  overflow-x: hidden;
}

.pm-hero-new {
  height: 100%;
}
.pm-hero-new__img {
  width: 80%;
  height: auto;
}
.pm-hero-new__img img {
  width: 100%;
  height: 100%;
}
.pm-hero-new .img-container {
  background-color: #ffffff;
}
.pm-hero-new .img-container:nth-child(2) {
  background-color: var(--color-grey-3);
}
.pm-hero-new .img-container:nth-child(3) {
  background-color: var(--color-purple-3);
}
.pm-hero-new .img-container:nth-child(4) {
  background-color: var(--color-purple-2);
}
.pm-hero-new #container1 {
  background-color: #fff;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.pm-hero-new .img-container {
  width: 10%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: width 0.5s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 30px 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pm-hero-new .img-container.active {
  width: 200%;
  transform: scale(1) !important;
  display: block;
}
.pm-hero-new .img-container.active h3.blck, .pm-hero-new .img-container.active h3.wht, .pm-hero-new .img-container.active h3.blk {
  display: none;
}
.pm-hero-new .img-container.active h3 {
  opacity: 1;
}
.pm-hero-new .img-container:hover {
  transform: scale(1.01);
  box-shadow: 0 0 0.5em #555;
}
.pm-hero-new__cntrn {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.pm-hero-new__cntrn p {
  width: 100% !important;
}
.pm-hero-new__w-70 {
  width: 70%;
}
.pm-hero-new__w-30 {
  width: 30%;
}
.pm-hero-new__outer {
  padding: 20px 0;
  height: 100vh;
  display: inline-flex;
}
.pm-hero-new__outer .logo {
  width: 25px;
  height: 19px;
  margin-bottom: 4px;
}
.pm-hero-new__outer .logo svg {
  width: 100%;
  height: 100%;
}
.pm-hero-new__outer h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  writing-mode: vertical-rl; /* Vertical text */
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 1px;
  font-weight: 600;
}
.pm-hero-new__outer h3.blk {
  color: #000;
}
.pm-hero-new__outer h3.wht {
  color: #fff;
}
.pm-hero-new__outer .hide {
  display: none;
  padding: 20px;
}
.pm-hero-new .img-container.active .pm-hero-new__outer .hide {
  display: block !important;
}
.pm-hero-new__head {
  color: var(--color-black);
  font-size: 60px;
  line-height: 1.1;
  padding-bottom: 24px;
}
.pm-hero-new__head.wht {
  color: var(--color-white);
}
.pm-hero-new p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
  width: 70%;
  padding: 30px 0;
}
.pm-hero-new p.wht {
  color: #fff;
}
.pm-hero-new__sec-outer {
  width: 100%;
  white-space: nowrap;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  transform: translate(-40%);
}
.pm-hero-new__sec-outer::-webkit-scrollbar {
  height: 8px;
}
.pm-hero-new__sec-outer::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}
.pm-hero-new .pm-heading .inner p.head {
  padding-bottom: 0;
}
.pm-hero-new .pm-heading .inner {
  align-items: center;
  gap: 15px;
}
.pm-hero-new .pm-heading .inner img {
  height: 60px;
}
.pm-hero-new .pm-heading .inner p.head {
  color: var(--color-black-1);
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  padding: 0;
}
.pm-hero-new__btn {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 28px;
  color: #A020F0;
}
.pm-hero-new__btn img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
.pm-hero-new__btn:hover img {
  transform: translateX(4px);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-hero-new #container1 {
    flex-direction: column;
    justify-content: center;
  }
  .pm-hero-new p {
    width: 100%;
  }
  .pm-hero-new .img-container.active {
    width: 100%;
  }
  .pm-hero-new__outer h3 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: rotate(0);
  }
  .pm-hero-new__sec-outer {
    transform: translate(0);
    white-space: unset;
  }
  .pm-hero-new__tile {
    width: calc(50% - 20px);
    min-height: auto;
  }
  .pm-hero-new__sec-1 {
    min-width: auto;
    align-items: flex-start;
  }
  .pm-hero-new__tile p {
    width: 100%;
  }
  .pm-hero-new__tile img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pm-hero-new__outer {
    height: 100%;
  }
  .pm-hero-new .img-container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-hero-new #container1 {
    flex-direction: column;
    justify-content: center;
  }
  .pm-hero-new .img-container.active {
    width: 100%;
  }
  .pm-hero-new__sec-outer {
    transform: translate(0);
    white-space: unset;
  }
  .pm-hero-new__tile {
    width: 100%;
    min-height: auto;
  }
  .pm-hero-new__sec-1 {
    min-width: auto;
    align-items: flex-start;
    flex-direction: column;
  }
  .pm-hero-new__tile p {
    width: 100%;
  }
  .pm-hero-new__tile img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pm-hero-new__outer {
    height: 100%;
  }
  .pm-hero-new .img-container {
    width: 100%;
  }
  .pm-hero-new .img-container {
    transform: scale(1) !important;
    display: block;
  }
  .pm-hero-new__outer .hide {
    display: block;
  }
  .pm-hero-new__outer h3.wht {
    display: none;
  }
  .pm-hero-new .img-container {
    padding: 20px;
  }
  .pm-hero-new p {
    width: 100%;
  }
  .pm-hero-new .img-container.active .pm-hero-new__outer .hide {
    padding: 0;
  }
  .pm-hero-new__cntrn {
    flex-direction: column;
  }
  .pm-hero-new__w-70, .pm-hero-new__w-30 {
    width: 100%;
  }
  .pm-hero-new__outer h3.blk {
    display: none;
  }
  .pm-hero-new__btn {
    display: flex;
    justify-content: center;
  }
  .pm-hero-new__outer .hide {
    padding: 0;
  }
  .pm-hero-new__img {
    width: 100%;
  }
  .pm-hero-new__outer h3 {
    display: none;
  }
}
.pm-branding-sec {
  padding: 70px 0 20px;
}
.pm-branding-sec.grey {
  background-color: var(--color-bg);
}
.pm-branding-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
}
.pm-branding-sec__w-50 {
  width: 50%;
}
.pm-branding-sec__w-50 p {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
}
.pm-branding-sec__end {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.pm-branding-sec__img {
  width: 75%;
  height: auto;
}
.pm-branding-sec__img img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  box-shadow: 0px 4px 20.4px 0px rgba(122, 122, 122, 0.2509803922);
}

@media (max-width: 767px) {
  .pm-branding-sec__outer {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .pm-branding-sec__w-50 {
    width: 100%;
  }
  .pm-branding-sec__img {
    width: 100%;
  }
  .pm-branding-sec {
    padding: 60px 0;
  }
}
.pm-service-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: inline-block;
  width: 100%;
  margin: 30px 0;
  box-shadow: 0px 0px 10.6px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s ease-in-out;
}
.pm-service-card:hover {
  box-shadow: 2px 2px 20.6px 0px rgba(0, 0, 0, 0.1019607843);
}
.pm-service-card:hover .pm-service-card__img {
  transform: scale(1.02);
}
.pm-service-card:hover .pm-service-card__logo {
  transform: translateY(5px);
}
.pm-service-card__head {
  color: var(--color-black-1);
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
}
.pm-service-card__logo {
  width: 70px;
  height: auto;
  margin: -28% auto 0;
  transition: all 0.3s ease-in-out;
}
.pm-service-card__logo img {
  width: 100%;
  height: 100%;
}
.pm-service-card__img {
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}
.pm-service-card__img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .pm-service-card__img {
    width: 60%;
  }
}
.pm-train-card {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 2px 2px 34.9px 0px rgba(166, 113, 217, 0.5019607843);
  transition: all 0.3s ease-in-out;
}
.pm-train-card__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 20px;
}
.pm-train-card__head {
  color: var(--color-black);
  font-size: 30px;
  line-height: 42px;
  padding: 15px 0 25px;
}
.pm-train-card__img {
  width: 65%;
  height: auto;
}
.pm-train-card__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.pm-train-card__logo {
  width: auto;
  height: 28px;
}
.pm-train-card__logo img {
  width: 100%;
  height: 100%;
}
.pm-train-card:hover {
  box-shadow: 2px 2px 95.9px 0px rgba(166, 113, 217, 0.5019607843);
}

.pm-train-live-card__outer {
  display: flex;
  flex-direction: column;
}
.pm-train-live-card__sec1 {
  padding: 20px;
  background-color: var(--color-purple-lgt-1);
  display: flex;
  align-items: center;
  gap: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.pm-train-live-card__sec1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  padding: 15px;
  border-radius: 5px;
}
.pm-train-live-card__sec1 .icon img {
  width: 24px;
  height: 24px;
}
.pm-train-live-card__sec1 .head {
  color: var(--color-white);
  font-size: 26px;
  line-height: 42px;
  font-weight: 700;
}
.pm-train-live-card__sec2 {
  background-color: var(--color-purple-drk);
  padding: 20px 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pm-train-live-card__sec2 .head {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-white);
  padding-top: 10px;
}
.pm-train-live-card__sec2 .sub-head {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-white);
}

.pm-train-card-1 {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 2.95px 2.95px 23.4px 0px rgba(183, 183, 183, 0.5019607843);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.pm-train-card-1__pltfrm {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 45px;
  height: 45px;
}
.pm-train-card-1__pltfrm img {
  width: 45px;
  height: 45px;
}
.pm-train-card-1__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 20px 30px;
}
.pm-train-card-1__head {
  color: var(--color-black);
  font-size: 32px;
  line-height: 42px;
  padding: 25px 0 0;
}
.pm-train-card-1__img {
  width: 65%;
  height: auto;
}
.pm-train-card-1__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.pm-train-card-1__cnt {
  color: #A0A0A0;
  font-size: 20px;
  line-height: 30px;
  padding: 20px 0;
}
.pm-train-card-1__logo {
  width: auto;
  height: 40px;
}
.pm-train-card-1__logo img {
  width: 100%;
  height: 100%;
}
.pm-train-card-1:hover {
  box-shadow: 8.95px 8.95px 45.4px 0px rgba(183, 183, 183, 0.5019607843);
}

.pm-tools-trng {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pm-tools-trng__head {
  color: var(--color-black-2);
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.pm-tools-trng__wrap {
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pm-tools-trng__wrap img {
  width: 40px;
  height: auto;
}
.pm-tools-trng__wrap p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-top: 10px;
}
.pm-tools-trng__inner {
  display: flex;
  align-items: flex-start;
}
.pm-tools-trng__inner .cntr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.pm-tools-trng__inner .cntr:first-child {
  border-right: 1px solid #ececec;
}

.pm-hero-hme {
  position: relative;
  width: 100%;
  height: 710px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
.pm-hero-hme video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-hero-hme::before {
  background: linear-gradient(90deg, #312783 0%, #965fd4 85%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8; /* Adjust opacity as needed */
  pointer-events: none;
  z-index: 1;
}
.pm-hero-hme__outer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 5%;
}
.pm-hero-hme P {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
  padding-bottom: 26px;
  width: 85%;
}
.pm-hero-hme__w-45 {
  width: 40%;
  padding: 0 20px;
  position: relative;
}
.pm-hero-hme__w-55 {
  width: 55%;
  position: relative;
}
.pm-hero-hme__img {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 20;
  display: inline-block;
}
.pm-hero-hme__img img {
  width: 100%;
  height: 100%;
}
.pm-hero-hme__svg {
  width: 136px;
  height: auto;
  position: absolute;
  left: 34%;
  top: -22%;
}
.pm-hero-hme__svg svg {
  width: 100%;
  height: 100%;
}
.pm-hero-hme__wht-dot {
  position: relative;
}
.pm-hero-hme__wht-dot svg {
  position: absolute;
  width: 145px;
  height: 205px;
  content: "";
  left: 45%;
  top: -18%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-hero-hme {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-hero-hme {
    height: 700px;
  }
  .pm-hero-hme__img {
    width: 210px;
  }
  .pm-hero-hme .pm-heading h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .pm-hero-hme__wht-dot::before {
    left: 58%;
  }
  .pm-hero-hme__slider {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .pm-hero-hme__outer {
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    padding-top: 5%;
  }
  .pm-hero-hme__w-55,
  .pm-hero-hme__w-45 {
    width: 100%;
  }
  .pm-hero-hme__cntr {
    margin-top: 60px;
  }
  .pm-hero-hme .pm-heading h1 {
    font-size: 36px;
    line-height: 50px;
  }
  .pm-hero-hme,
  .pm-hero-hme__outer {
    height: 900px;
  }
  .pm-hero-hme__wht-dot SVG {
    display: none;
  }
  .pm-hero-hme__img {
    width: 80%;
    margin: auto;
    display: flex;
  }
  .pm-hero-hme .pm-heading h1,
  .pm-hero-hme P {
    width: 100%;
  }
}
.pm-case-study-hme {
  background-color: var(--color-white);
  padding: 60px 0;
  overflow: hidden;
}
.pm-case-study-hme .pm-heading h2 {
  text-align: center;
}
.pm-case-study-hme .pm-case-study-card {
  margin: 20px 10px;
}
.pm-case-study-hme p.cnt {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 20px;
  color: var(--color-grey);
  width: 55%;
  margin: auto;
}
.pm-case-study-hme__slider {
  margin: 30px 20px;
  position: relative;
}
.pm-case-study-hme__btn-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 45%;
  width: 100%;
}
.pm-case-study-hme__btn-outer .lft {
  width: 35px;
  height: 35px;
  transform: rotate(180deg);
  position: absolute;
  left: -3%;
  cursor: pointer;
}
.pm-case-study-hme__btn-outer .lft img {
  width: 100%;
  height: 100%;
}
.pm-case-study-hme__btn-outer .rgt {
  width: 35px;
  height: 35px;
  position: absolute;
  right: -3%;
  cursor: pointer;
}
.pm-case-study-hme__btn-outer .rgt img {
  width: 100%;
  height: 100%;
}
.pm-case-study-hme__cta {
  display: flex;
  justify-content: center;
}
.pm-case-study-hme .slick-dots li.slick-active button:before {
  background-color: #000;
  width: 4px;
  height: 4px;
}
.pm-case-study-hme .slick-dots li button:before {
  background-color: #000;
  width: 4px;
  height: 4px;
  line-height: 4px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-case-study-hme__btn-outer .lft {
    left: -6%;
  }
  .pm-case-study-hme__btn-outer .rgt {
    right: -6%;
  }
  .pm-case-study-hme p.cnt {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .pm-case-study-hme p.cnt {
    width: 100%;
  }
  .pm-case-study-hme__btn-outer .rgt, .pm-case-study-hme__btn-outer .lft {
    display: none !important;
  }
  .pm-case-study-hme {
    padding: 40px 0;
  }
}
.pm-solutions-hme {
  background-color: #f8f8ff;
  padding: 90px 0;
}
.pm-solutions-hme__outer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.pm-solutions-hme__wrap {
  flex-wrap: wrap;
}
.pm-solutions-hme .pm-industry-card {
  width: 23%;
  margin-bottom: 5px;
}
.pm-solutions-hme__w-45 {
  width: 45%;
}
.pm-solutions-hme__w-55 {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.pm-solutions-hme__w-55.wrap {
  flex-wrap: wrap;
}
.pm-solutions-hme__cnt {
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 20px;
  color: var(--color-grey);
  width: 90%;
}
.pm-solutions-hme .pm-solutions-card {
  width: 25%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-solutions-hme__outer {
    flex-direction: column;
  }
  .pm-solutions-hme__w-45 {
    width: 100%;
  }
  .pm-solutions-hme__w-55 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-solutions-hme__outer {
    flex-direction: column;
  }
  .pm-solutions-hme__w-45 {
    width: 100%;
  }
  .pm-solutions-hme__w-55 {
    width: 100%;
  }
  .pm-solutions-hme {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .pm-solutions-hme__outer {
    flex-direction: column;
  }
  .pm-solutions-hme__w-45 {
    width: 100%;
  }
  .pm-solutions-hme__w-55 {
    width: 100%;
  }
  .pm-solutions-hme .pm-industry-card {
    width: 48%;
  }
  .pm-solutions-hme .pm-solutions-card {
    width: 48%;
  }
  .pm-solutions-hme__w-55 {
    flex-wrap: wrap;
  }
  .pm-solutions-hme {
    padding: 40px 0 50px;
  }
}
.pm-vid-sec-hme {
  background-color: #f8f8ff;
  padding: 20px 0;
  overflow: hidden;
}
.pm-vid-sec-hme__outer {
  background-color: #ffffff;
  border-radius: 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px 60px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.pm-vid-sec-hme__cnt {
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 20px;
  color: var(--color-grey);
  width: 60%;
  margin: auto;
  text-align: center;
}
.pm-vid-sec-hme__vid {
  width: 80%;
  height: 495px;
  margin: 30px auto 0;
  display: block;
  border-radius: 32px;
  transform: scale(1.8);
}
.pm-vid-sec-hme__vid video {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-vid-sec-hme__vid {
    width: 80%;
    height: 445px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-vid-sec-hme__cnt {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .pm-vid-sec-hme__vid {
    width: 100%;
    height: 300px;
  }
  .pm-vid-sec-hme__cnt {
    width: 100%;
  }
  .pm-vid-sec-hme {
    width: 30px 0;
  }
  .pm-hero-hme__outer {
    padding: 50px 16px;
  }
}
.pm-spcl-hme {
  width: 100%;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
}
.pm-spcl-hme__cnt {
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 20px;
  color: var(--color-white);
  width: 60%;
  margin: auto;
  text-align: center;
}
.pm-spcl-hme .pm-heading h2 {
  text-align: center;
}
.pm-spcl-hme__cntnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: 40px auto;
}
.pm-spcl-hme .pm-industry-card {
  width: 25%;
  height: 320px;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
}
.pm-spcl-hme .pm-industry-card__img {
  margin: 10px auto;
  width: 70px;
  height: 70px;
}
.pm-spcl-hme .pm-industry-card p {
  font-size: 22px;
  line-height: 28px;
  padding-bottom: 35px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-spcl-hme .pm-industry-card {
    width: 30%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-spcl-hme .pm-industry-card {
    width: 30%;
  }
  .pm-spcl-hme__cntnr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-spcl-hme__cntnr {
    flex-direction: column;
    width: 100%;
    margin: 20px 0 0;
  }
  .pm-spcl-hme {
    height: 100%;
  }
  .pm-spcl-hme__cnt {
    width: 100%;
  }
  .pm-spcl-hme .pm-industry-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
.pm-about-sec {
  padding: 90px 0 50px;
  background-color: #f8f8ff;
}
.pm-about-sec__outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
}
.pm-about-sec__w-35 {
  width: 35%;
}
.pm-about-sec__w-35 img {
  width: 90%;
  height: auto;
}
.pm-about-sec__w-45 {
  width: 45%;
}
.pm-about-sec__w-45 p {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
}
.pm-about-sec__head {
  color: var(--color-blue);
  font-size: 38px;
  line-height: 48px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .pm-about-sec__outer {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
  .pm-about-sec__w-35, .pm-about-sec__w-45 {
    width: 100%;
  }
  .pm-about-sec__w-35 img {
    width: 50%;
  }
  .pm-about-crtve__cnt {
    font-size: 16px;
    line-height: 26px;
  }
  .pm-about-sec {
    padding: 40px 0;
  }
}
.pm-cntct-sec {
  padding: 90px 0 70px;
  position: relative;
}
.pm-cntct-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.pm-cntct-sec__w-50 {
  width: 50%;
}
.pm-cntct-sec__head {
  font-size: 40px;
  line-height: 50px;
  color: var(--color-blue);
  padding: 20px 0;
}
.pm-cntct-sec__sub-head {
  font-size: 28px;
  line-height: 45px;
  color: var(--color-blue);
  padding: 20px 0;
}
.pm-cntct-sec__cnt {
  color: var(--color-grey);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15PX;
}
.pm-cntct-sec__inner-1 {
  padding-bottom: 60px;
}
.pm-cntct-sec__cntrn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pm-cntct-sec__cntrn .flx {
  display: flex;
  gap: 5px;
  padding-right: 20px;
}
.pm-cntct-sec__cntrn a {
  color: var(--color-grey);
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-cntct-sec__outer {
    flex-direction: column;
  }
  .pm-cntct-sec__w-50 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-cntct-sec__outer {
    flex-direction: column;
  }
  .pm-cntct-sec__w-50 {
    width: 100%;
  }
  .pm-cntct-form .form-group {
    flex-direction: column;
  }
  .pm-cntct-form .pm-btn {
    width: 40%;
  }
  .pm-cntct-form .form-container {
    padding: 1rem;
  }
  .pm-cntct-sec {
    padding: 40px 0;
  }
}
.pm-header-1 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  transition: all 0.3s ease-in-out;
  /* Animation on click */
}
.pm-header-1.scroll {
  background-color: var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.pm-header-1.scroll .hamburger span {
  background-color: var(--color-blue);
}
.pm-header-1.scroll .pm-header-1__logo {
  --tw-text-opacity: 1;
  color: rgb(49 39 131/var(--tw-text-opacity));
}
.pm-header-1.scroll .language-selector svg {
  color: var(--color-blue);
}
.pm-header-1.scroll .mob-header .navbar-toggler-icon {
  filter: invert(0);
}
.pm-header-1 .mob-header .navbar-toggler-icon {
  filter: invert(1);
}
.pm-header-1 .mob-header .navbar-toggler:focus {
  box-shadow: none;
}
.pm-header-1 .mob-header .pm-header-1__logo {
  width: 65px;
}
.pm-header-1 .mob-header .language-selector {
  width: 70px;
  height: 35px;
}
.pm-header-1 .mob-header .offcanvas {
  max-width: 90%;
}
.pm-header-1 .mob-header .nav-link {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding: 10px 0;
}
.pm-header-1 .mob-header .dropdown-menu {
  border: none;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-grey);
}
.pm-header-1 .mob-header .dropdown-menu.active {
  display: block;
  padding: 0;
}
.pm-header-1 .mob-header .dropdown-menu .head {
  color: var(--color-blue);
  font-size: 16px;
  line-height: 26px;
}
.pm-header-1 .mob-header .pm-btn-2 {
  margin: 20px 0;
}
.pm-header-1 .mob-header .language-form {
  margin-left: auto;
  margin-right: 30px;
}
.pm-header-1 .dropdown-toggle::after {
  display: none;
}
.pm-header-1__cntnr {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pm-header-1 nav {
  padding: 25px 0;
}
.pm-header-1 .pm-btn-2,
.pm-header-1 .pm-btn {
  height: 45px;
}
.pm-header-1__outer {
  display: flex;
  justify-content: space-between;
}
.pm-header-1__logo {
  width: 235px;
  height: auto;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
  transition: all 0.3s ease-in-out;
  display: block;
}
.pm-header-1__logo img,
.pm-header-1__logo svg {
  width: 100%;
  height: 100%;
}
.pm-header-1 .language-form {
  display: inline-block;
}
.pm-header-1 .language-selector {
  position: relative;
  width: 72px;
  height: 45px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}
.pm-header-1 .language-selector svg {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  color: #fff;
}
.pm-header-1 .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.pm-header-1 select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
}
.pm-header-1 option {
  padding: 8px;
}
.pm-header-1 .dropdown,
.pm-header-1 .dropdown-center,
.pm-header-1 .dropend,
.pm-header-1 .dropstart,
.pm-header-1 .dropup,
.pm-header-1 .dropup-center {
  position: static;
}
.pm-header-1 .navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 100%;
  border-radius: 20px;
}
.pm-header-1 .container-fluid {
  padding: 0;
}
.pm-header-1 .dropdown-menu.fade-down {
  animation: fadeDown 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none; /* Start hidden */
}
.pm-header-1__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pm-header-1 .hamburger {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10;
  margin-left: 50px;
}
.pm-header-1 .hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.pm-header-1 .hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.pm-header-1 .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.pm-header-1 .hamburger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.pm-header-1__wht-box {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--color-white);
  display: none;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 20px;
  padding: 40px 80px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}
.pm-header-1__wht-box.show {
  display: block;
  transform: translateY(0);
}
.pm-header-1__inr-sec {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  padding-bottom: 20px;
  border-bottom: 0.89px solid rgba(192, 192, 192, 0.5019607843);
}
.pm-header-1__inr-sec a {
  font-size: 22px;
  line-height: 32px;
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
  padding: 10px 20px 15px;
}
.pm-header-1__inr-sec a:hover, .pm-header-1__inr-sec a.active {
  color: var(--color-purple);
}
.pm-header-1__wrap {
  padding: 30px;
  display: none;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: var(--color-white);
  z-index: 1000;
  padding-top: 30px;
  margin-top: -30px;
  transition: all 0.3s ease-in-out;
}
.pm-header-1__wrap.active {
  display: flex;
}
.pm-header-1__wrap .outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pm-header-1__wrap .outer.wrap {
  flex-wrap: wrap;
  width: 100%;
}
.pm-header-1__w-50 {
  width: 50%;
}
.pm-header-1__w-30 {
  width: 40%;
}
.pm-header-1__w-30 img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.pm-header-1__cnt {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-grey);
  width: 95%;
  padding-top: 20px;
}
.pm-header-1 .pm-heading p {
  font-size: 34px;
  line-height: 44px;
  color: #312783;
}
.pm-header-1__sub-inner {
  width: calc(25% - 20px);
  margin: 0 10px;
}
.pm-header-1__sub-menu a {
  color: var(--color-grey);
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  transition: all 0.3s ease-out;
}
.pm-header-1__sub-menu a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1.5px;
  background-color: var(--color-purple);
  bottom: 10px;
  left: 0;
  transition: all 0.3s ease-out;
}
.pm-header-1__sub-menu a:hover::after {
  width: 80%;
}

.pm-prvcy-sec {
  padding: 90px 0 70px;
}
.pm-prvcy-sec__outer {
  padding-bottom: 20px;
}
.pm-prvcy-sec__outer p,
.pm-prvcy-sec__outer a {
  color: var(--color-grey);
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 15px;
}
.pm-prvcy-sec__head {
  color: var(--color-blue);
  font-size: 24px;
  line-height: 48px;
  padding-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-prvcy-sec__head {
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .pm-prvcy-sec {
    padding: 40px 0;
  }
  .pm-prvcy-sec__head {
    line-height: 34px;
  }
}
.pm-case-study-tab {
  padding: 90px 0 70px;
}
.pm-case-study-tab .nav {
  justify-content: center;
  gap: 24px;
}
.pm-case-study-tab .nav-pills .nav-link {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 16px;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-case-study-tab .nav-pills .nav-link img {
  width: 20px;
  height: 20px;
}
.pm-case-study-tab .nav-pills .nav-link.active, .pm-case-study-tab .nav-pills .show > .nav-link {
  border: 2px solid var(--color-purple);
}
.pm-case-study-tab__outer {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 30px 60px;
}
.pm-case-study-tab .pm-case-study-card {
  width: calc(33.3% - 20px);
  margin: 10px 10px;
}
.pm-case-study-tab .pm-case-study-card__img {
  width: 180px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-case-study-tab .pm-case-study-card {
    width: calc(50% - 20px);
  }
  .pm-case-study-tab__outer {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .pm-case-study-tab .pm-case-study-card {
    width: calc(100% - 20px);
  }
  .pm-case-study-tab__outer {
    padding: 30px;
  }
  .pm-case-study-tab {
    padding: 40px 0;
  }
}
.pm-ftr-bnnr {
  padding: 30px 0;
  background-color: var(--color-bg);
}
.pm-ftr-bnnr__bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-ftr-bnnr__w-35 {
  width: 45%;
}
.pm-ftr-bnnr__w-35 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  width: 90%;
}
.pm-ftr-bnnr__w-35 .dot-list {
  list-style: disc;
  padding: 20px 0 20px 20px;
}
.pm-ftr-bnnr__w-35 .dot-list li {
  font-size: 16px;
  line-height: 16px;
  color: var(--color-white);
  margin-bottom: 7px;
  width: 90%;
}
.pm-ftr-bnnr__w-45 {
  width: 45%;
}
.pm-ftr-bnnr__w-45 p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
}
.pm-ftr-bnnr__w-45 .list li {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
  font-family: "Sofia Pro light", sans-serif;
}
.pm-ftr-bnnr__w-45 .list li span {
  font-weight: 700;
}
.pm-ftr-bnnr__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding-top: 20px;
}
.pm-ftr-bnnr input {
  padding: 10px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #fff;
}
.pm-ftr-bnnr input::-moz-placeholder {
  color: white;
  opacity: 1;
}
.pm-ftr-bnnr input::placeholder {
  color: white;
  opacity: 1;
}
.pm-ftr-bnnr .pm-btn-1 .button {
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease-in-out;
}
.pm-ftr-bnnr .pm-btn-1 .button span {
  transition: all 0.3s ease-in-out;
}
.pm-ftr-bnnr .pm-btn-1 .button:hover span {
  transform: translateX(5px);
}
.pm-ftr-bnnr .pm-heading h2.wht {
  padding-top: 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-ftr-bnnr__w-35 {
    width: 58%;
  }
  .pm-ftr-bnnr__bg {
    padding: 30px;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .pm-ftr-bnnr__bg {
    flex-direction: column;
    padding: 20px;
    height: 100%;
  }
  .pm-ftr-bnnr__w-35,
  .pm-ftr-bnnr__w-45 {
    width: 100%;
  }
  .pm-ftr-bnnr__wrap {
    gap: 20px;
  }
  .pm-ftr-bnnr {
    padding: 30px 0 60px;
  }
}
.pm-ftr-bnnr-1 {
  padding: 40px 0 70px;
  background-color: var(--color-bg);
}
.pm-ftr-bnnr-1__bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-ftr-bnnr-1__w-50 {
  width: 55%;
}
.pm-ftr-bnnr-1__w-50 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  width: 80%;
}
.pm-ftr-bnnr-1__w-45 {
  width: 40%;
}
.pm-ftr-bnnr-1__w-45 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}
.pm-ftr-bnnr-1__w-45 .list li {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
  font-family: "Sofia Pro light", sans-serif;
}
.pm-ftr-bnnr-1__w-45 .list li span {
  font-weight: 700;
}
.pm-ftr-bnnr-1__wrap {
  list-style: disc;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 30px;
}
.pm-ftr-bnnr-1__wrap li {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
  width: 50%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-ftr-bnnr-1__wrap li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-ftr-bnnr-1__bg {
    flex-direction: column;
    padding: 20px;
    height: 100%;
  }
  .pm-ftr-bnnr-1__w-35,
  .pm-ftr-bnnr-1__w-45 {
    width: 100%;
  }
  .pm-ftr-bnnr-1__wrap {
    gap: 20px;
  }
  .pm-ftr-bnnr-1__w-45,
  .pm-ftr-bnnr-1__w-50 {
    width: 100%;
  }
  .pm-ftr-bnnr-1__wrap {
    padding-left: 20px;
  }
  .pm-ftr-bnnr-1__wrap li {
    width: 100%;
  }
  .pm-ftr-bnnr-1 {
    padding: 0 0 50px;
  }
}
.pm-ftr-bnnr-2 {
  padding: 30px 0;
  background-color: var(--color-bg);
}
.pm-ftr-bnnr-2__bg {
  width: 100%;
  height: 685px;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-ftr-bnnr-2__w-35 {
  width: 45%;
}
.pm-ftr-bnnr-2__w-35 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  width: 90%;
}
.pm-ftr-bnnr-2__w-35 .dot-list {
  list-style: disc;
  padding: 30px 0 20px 30px;
}
.pm-ftr-bnnr-2__w-35 .dot-list li {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  margin-bottom: 10px;
  width: 90%;
}
.pm-ftr-bnnr-2__w-45 {
  width: 45%;
}
.pm-ftr-bnnr-2__w-45 p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
}
.pm-ftr-bnnr-2__w-45 .dot-list {
  list-style: disc;
  padding: 30px 0 20px 30px;
}
.pm-ftr-bnnr-2__w-45 .dot-list li {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  margin-bottom: 10px;
  width: 95%;
}
.pm-ftr-bnnr-2__w-45 .list li {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
  font-family: "Sofia Pro light", sans-serif;
}
.pm-ftr-bnnr-2__w-45 .list li span {
  font-weight: 700;
}
.pm-ftr-bnnr-2__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding-top: 20px;
}
.pm-ftr-bnnr-2 input {
  padding: 10px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #fff;
}
.pm-ftr-bnnr-2 input::-moz-placeholder {
  color: white;
  opacity: 1;
}
.pm-ftr-bnnr-2 input::placeholder {
  color: white;
  opacity: 1;
}
.pm-ftr-bnnr-2 .pm-btn-1 .button {
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease-in-out;
}
.pm-ftr-bnnr-2 .pm-btn-1 .button span {
  transition: all 0.3s ease-in-out;
}
.pm-ftr-bnnr-2 .pm-btn-1 .button:hover span {
  transform: translateX(5px);
}
.pm-ftr-bnnr-2 .pm-heading h2.wht {
  padding-top: 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-ftr-bnnr-2__w-35 {
    width: 58%;
  }
  .pm-ftr-bnnr-2__bg {
    padding: 30px;
    gap: 50px;
  }
  .pm-ftr-bnnr-2__bg {
    height: 100%;
  }
  .pm-ftr-bnnr-2__w-45 .dot-list li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-ftr-bnnr-2__bg {
    flex-direction: column;
    padding: 20px;
    height: 100%;
  }
  .pm-ftr-bnnr-2__w-35,
  .pm-ftr-bnnr-2__w-45 {
    width: 100%;
  }
  .pm-ftr-bnnr-2__wrap {
    gap: 20px;
  }
  .pm-ftr-bnnr-2__w-35 .dot-list {
    padding: 20px 0 0 20px;
  }
  .pm-ftr-bnnr-2__w-35 .dot-list li,
  .pm-ftr-bnnr-2__w-45 .dot-list li {
    width: 100%;
  }
}
.pm-ftr-bnnr-3 {
  background: linear-gradient(90deg, #403cb1 0%, #1b194b 100%);
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  padding: 20px;
}
.pm-ftr-bnnr-3__outer {
  display: flex;
  align-items: center;
}
.pm-ftr-bnnr-3__w50 {
  width: 50%;
}
.pm-ftr-bnnr-3__w25 {
  width: 25%;
}
.pm-ftr-bnnr-3__text {
  color: var(--color-white);
  font-size: 20px;
  line-height: 26px;
}
.pm-ftr-bnnr-3__logo {
  width: 158px;
  height: auto;
  margin-top: 30px;
}
.pm-ftr-bnnr-3__logo img {
  width: 100%;
  height: 100%;
}
.pm-ftr-bnnr-3__img {
  width: 250px;
  height: auto;
  margin-top: 30px;
}
.pm-ftr-bnnr-3__img img {
  width: 100%;
  height: 100%;
}
.pm-ftr-bnnr-3 .pm-heading h2 {
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .pm-ftr-bnnr-3__logo {
    display: none;
  }
  .pm-ftr-bnnr-3__outer {
    flex-direction: column;
  }
  .pm-ftr-bnnr-3__w50 {
    width: 100%;
  }
  .pm-ftr-bnnr-3__w25 {
    width: 100%;
  }
  .pm-ftr-bnnr-3__img {
    display: none;
  }
}
.pm-footer__bg {
  width: 100%;
  background-color: var(--color-white);
  max-height: 100%;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pm-footer__bg.active {
  max-height: 120px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}
.pm-footer__btm-sec {
  background-color: var(--color-white);
}
.pm-footer__wrap-out {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #545461;
  padding: 30px 0;
  position: relative;
}
.pm-footer__wrap-out li a, .pm-footer__wrap-out li {
  color: var(--color-black);
}
.pm-footer__wrap-out .arrow {
  width: 30px;
  height: 30px;
  padding: 26px;
  line-height: 32px;
  background-color: var(--color-blue);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  top: -35%;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.pm-footer__wrap-out .arrow.rotated {
  transform: translateX(-50%) rotate(180deg);
}
.pm-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-footer__wrap ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.pm-footer__outer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 60px 0 20px;
}
.pm-footer__cntrn {
  width: calc(19% - 20px);
  margin: 0 10px;
}
.pm-footer__cntrn.w-12 {
  width: 12%;
}
.pm-footer__head {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-blue);
  font-weight: 600;
  padding-bottom: 30px;
}
.pm-footer__head-1 {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-blue);
  font-weight: 500;
  padding: 35px 0 10px;
}
.pm-footer__list p {
  color: var(--color-black);
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 18px;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.pm-footer__list li a {
  display: inline-block;
  color: var(--color-black);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 18px;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.pm-footer__list li a::after {
  content: "";
  content: "";
  position: absolute;
  width: 99%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: 35%;
  left: 0;
  background-color: var(--color-blue);
  transform-origin: bottom right;
  transition: transform 0.35s ease-in-out;
}
.pm-footer__list li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.pm-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: end;
}
.pm-footer__svg {
  width: 380px;
  height: auto;
}
.pm-footer__svg svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.pm-footer__cnt {
  color: var(--color-black);
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 50px;
  font-weight: 300;
}
.pm-footer__social-outer {
  width: 250px;
}
.pm-footer__social-outer .inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: end;
}
.pm-footer .svg {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}
.pm-footer .svg svg, .pm-footer .svg img {
  width: 100%;
  height: 100%;
}
.pm-footer .svg:hover {
  transform: scale(1.1);
}
.pm-footer__outer-accord {
  padding: 30px 20px;
}
.pm-footer__outer-accord .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 25px 0 15px;
  border-top: 1px solid rgba(149, 148, 148, 0.3490196078);
}
.pm-footer__outer-accord .head.b-none {
  border-top: none;
}
.pm-footer__outer-accord .head svg {
  width: 20px;
  height: 20px;
}
.pm-footer__outer-accord .pm-footer__head {
  padding-bottom: 0;
}
.pm-footer__outer-accord .pm-footer__list li a {
  text-align: left;
  padding: 12px 0;
}
.pm-footer__outer-accord .pm-footer__list {
  display: none;
  margin: 10px 0;
}
.pm-footer .accord.active .pm-footer__list {
  display: block;
}
.pm-footer .accord .arrow {
  transition: transform 0.3s ease;
}
.pm-footer .accord.active .arrow {
  transform: rotate(180deg);
}
.pm-footer .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.linear-gradient-animation {
  width: 100%;
  height: 8px;
  position: relative;
  overflow: hidden;
}

.linear-gradient-animation span:after, .linear-gradient-animation span:before {
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background-size: 100% 100%;
}

.linear-gradient-animation span {
  display: flex;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}

.linear-gradient-animation div {
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: linearGradientMovement 6s linear infinite;
}

.linear-gradient-animation span:before {
  background: linear-gradient(90deg, #a671d9 2.92%, #3c3ea9 15.42%, #a671d9 28.44%, #4144ff 41.46%, #3c3ea9 55%, #4144fe 68.54%, #a671d9 82.6%, #4144fe 97.71%);
}

.linear-gradient-animation span:after {
  background: linear-gradient(90deg, #4144fe 2.92%, #a671d9 15.42%, #4144fe 28.44%, #3c3ea9 41.46%, #4144ff 55%, #a671d9 68.54%, #3c3ea9 82.6%, #a671d9 97.71%);
}

.linear-gradient-animation span:first-child {
  left: 0;
}

body > footer > div.pm-footer__outer-accord > div:nth-child(1) > div {
  border-top: 0;
}

.mob-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}

@keyframes linearGradientMovement {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-footer__cntrn {
    width: calc(36% - 20px);
    margin: 10px 10px;
  }
  .pm-footer__bg {
    height: 100%;
  }
  .pm-footer__cntrn {
    width: calc(20% - 20px) !important;
  }
  .pm-footer__head {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 40px;
  }
  .pm-footer__bg.active {
    max-height: 140px;
  }
  .pm-footer__list li a::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .pm-footer__cntrn, .pm-footer__cntrn.w-12 {
    width: calc(100% - 20px);
    margin: 10px 10px;
  }
  .pm-footer__bg {
    height: 100%;
  }
  .pm-footer__inner {
    flex-direction: column;
  }
  .pm-footer__svg, .pm-footer__social-outer {
    width: 80%;
    margin: auto;
  }
  .pm-footer__social-outer {
    padding-top: 30px;
  }
  .pm-footer__head, .pm-footer__head-1 {
    text-align: center;
  }
  .pm-footer__wrap-out {
    flex-direction: column;
    gap: 20px;
  }
  .pm-footer__list li a {
    margin: auto;
    display: block;
    text-align: center;
  }
  .pm-footer__cnt {
    text-align: center;
    width: 100%;
  }
  .pm-footer__list li a::after {
    display: none;
  }
}
.pm-bnnr-crtve {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6% 0 5%;
}
.pm-bnnr-crtve h1 {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 50px;
  padding: 30px 0;
  color: var(--color-white);
  font-family: "Sofia Pro ultra light", sans-serif;
}
.pm-bnnr-crtve h1 img {
  width: 85px;
  height: auto;
}
.pm-bnnr-crtve p.cnt {
  color: var(--color-white);
  font-size: 20px;
  line-height: 32px;
  padding: 20px 0 30px;
  width: 85%;
  display: inline-block;
}
.pm-bnnr-crtve__outer {
  display: flex;
  gap: 35px;
  align-items: flex-end;
  padding-top: 30px;
  position: relative;
}
.pm-bnnr-crtve__w-30 {
  width: 45%;
  min-height: 289px;
}
.pm-bnnr-crtve .pm-crtve-bnr-slider__slider {
  min-height: 289px;
}
.pm-bnnr-crtve__w-30-r {
  transform: rotate(270deg);
  width: 30%;
  padding-left: 15px;
}
.pm-bnnr-crtve__w-30-r .outer {
  width: -moz-fit-content;
  width: fit-content;
}
.pm-bnnr-crtve__w-60 {
  width: 70%;
}
.pm-bnnr-crtve__w-60 .outer {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
}
.pm-bnnr-crtve__w-40 {
  width: 55%;
  height: 289px;
  border-radius: 20px;
}
.pm-bnnr-crtve__w-40 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-bnnr-crtve__txt-outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-bnnr-crtve__head {
  font-size: 80px;
  line-height: 75px;
  font-weight: 900;
  white-space: nowrap;
  padding-bottom: 15px;
  font-family: "Sofia Pro bold", sans-serif;
}
.pm-bnnr-crtve__head:nth-child(1) {
  background: linear-gradient(270deg, #27005d 0%, #300198 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-crtve__head:nth-child(2) {
  background: linear-gradient(270deg, #13014f 0%, #500088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-crtve__head:nth-child(3) {
  background: linear-gradient(270deg, #1f0155 0%, #5d008d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-crtve__head:nth-child(4) {
  background: linear-gradient(270deg, #170149 0%, #730097 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-bnnr-crtve__head {
    font-size: 73px;
    line-height: 58px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-bnnr-crtve {
    height: 100%;
  }
  .pm-bnnr-crtve__outer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .pm-bnnr-crtve p.cnt,
  .pm-bnnr-crtve__w-60 {
    width: 100%;
  }
  .pm-bnnr-crtve__w-30,
  .pm-bnnr-crtve__w-40 {
    width: 46%;
  }
  .pm-bnnr-crtve__w-30-r {
    transform: rotate(0deg);
  }
  .pm-bnnr-crtve__head {
    font-size: 50px;
    line-height: 55px;
  }
  .pm-bnnr-crtve__w-30-r {
    width: 100%;
  }
  .pm-bnnr-crtve__w-30-r .outer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .pm-bnnr-crtve {
    height: 100%;
    padding: 15% 0 5%;
  }
  .pm-bnnr-crtve p.cnt,
  .pm-bnnr-crtve__w-60 {
    width: 100%;
  }
  .pm-bnnr-crtve__outer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .pm-bnnr-crtve__w-60 .outer {
    flex-direction: column;
  }
  .pm-bnnr-crtve__w-30-r {
    transform: rotate(0deg);
    width: 100%;
  }
  .pm-bnnr-crtve__w-30,
  .pm-bnnr-crtve__w-40 {
    width: 100%;
  }
  .pm-bnnr-crtve h1 {
    font-size: 54px;
    line-height: 54px;
  }
  .pm-bnnr-crtve h1 img {
    width: 55px;
  }
  .pm-bnnr-crtve__head {
    font-size: 45px;
    line-height: 53px;
  }
}
.pm-about-crtve {
  padding: 10px 0 60px;
  background-color: var(--color-bg);
}
.pm-about-crtve__brdcrumps {
  display: flex;
  gap: 5px;
  align-items: center;
}
.pm-about-crtve__brdcrumps a {
  color: var(--color-grey);
}
.pm-about-crtve__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 20px;
}
.pm-about-crtve__w-40 {
  width: 40%;
}
.pm-about-crtve__w-30 {
  width: 30%;
}
.pm-about-crtve__w-30 p {
  font-size: 20px !important;
  line-height: 32px !important;
}
.pm-about-crtve__w-35 {
  width: 45%;
}
.pm-about-crtve .pm-heading h2 {
  width: 100%;
  font-size: 58px;
  line-height: 70px;
}
.pm-about-crtve__cnt {
  color: var(--color-blue) !important;
  font-size: 20px;
  line-height: 32px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-about-crtve__w-40 {
    width: 55%;
  }
  .pm-about-crtve .pm-heading h2 {
    font-size: 48px;
    line-height: 60px;
  }
  .pm-about-crtve__w-35 {
    width: 35%;
  }
  .pm-about-crtve__w-30 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pm-about-crtve__outer {
    flex-direction: column;
  }
  .pm-about-crtve__w-40, .pm-about-crtve__w-35, .pm-about-crtve__w-30 {
    width: 100%;
  }
  .pm-about-crtve .pm-heading h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.pm-avnu-sec-crtve {
  padding: 50px 0;
  background-color: var(--color-blue-1);
}
.pm-avnu-sec-crtve.srvc-innr {
  background-color: var(--color-bg);
}
.pm-avnu-sec-crtve.srvc-innr .pm-avnu-crd-crtve:hover {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-avnu-sec-crtve.srvc-innr .pm-avnu-crd-crtve__head {
  color: var(--color-blue);
}
.pm-avnu-sec-crtve.srvc-innr .pm-avnu-crd-crtve__cnt {
  width: 90%;
}
.pm-avnu-sec-crtve.srvc-innr .pm-avnu-crd-crtve {
  min-height: 410px;
}
.pm-avnu-sec-crtve .pm-heading h2.wht {
  text-align: center;
}
.pm-avnu-sec-crtve p.cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
  text-align: center;
  width: 40%;
  margin: auto;
}
.pm-avnu-sec-crtve__outer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 30px -10px;
}
.pm-avnu-sec-crtve .pm-avnu-crd-crtve {
  width: calc(25% - 20px);
  margin: 0 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-avnu-sec-crtve .pm-avnu-crd-crtve {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .pm-avnu-sec-crtve .pm-avnu-crd-crtve {
    width: calc(100% - 20px);
    margin: 10px;
  }
  .pm-avnu-sec-crtve p.cnt {
    width: 100%;
  }
  .pm-avnu-sec-crtve.srvc-innr .pm-avnu-crd-crtve {
    min-height: auto;
  }
  .pm-avnu-crd-crtve__head {
    font-size: 18px;
    line-height: 28px;
  }
  .pm-avnu-sec-crtve {
    padding: 30px 0;
  }
}
.pm-mnd-crtve {
  padding: 50px 0 70px;
  background-color: var(--color-bg);
}
.pm-mnd-crtve__outer {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 50px;
}
.pm-mnd-crtve__w-50 {
  width: 50%;
}
.pm-mnd-crtve p.cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 24px;
}
.pm-mnd-crtve .nav-pills .nav-link {
  color: var(--color-blue);
  display: block;
  width: 350px;
  padding: 20px;
  border-bottom: 1px solid rgba(164, 164, 164, 0.2);
  border-radius: 0;
  font-size: 18px;
  line-height: 28px;
}
.pm-mnd-crtve .nav-pills .nav-link.active, .pm-mnd-crtve .nav-pills .show > .nav-link {
  background-color: var(--color-white);
}
.pm-mnd-crtve .nav-pills .nav-link.active {
  opacity: 0.7;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-mnd-crtve__outer {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .pm-mnd-crtve__outer {
    padding: 30px 20px;
  }
  .pm-mnd-crtve__outer {
    flex-direction: column;
  }
  .pm-mnd-crtve .nav-pills .nav-link {
    width: 100%;
  }
  .pm-mnd-crtve__w-50, .pm-mnd-crtve__w-50 nav {
    width: 100%;
  }
  .pm-mnd-crtve .w-100 {
    width: 100%;
  }
  .pm-mnd-crtve {
    padding: 40px 0;
  }
}
.pm-wrk-crtv {
  padding: 50px 0;
  background-color: var(--color-bg);
}
.pm-wrk-crtv__outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.pm-wrk-crtv__w-30 {
  width: 35%;
}
.pm-wrk-crtv__w-30 p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 20px;
  width: 90%;
}
.pm-wrk-crtv__w-70 {
  width: 65%;
}
.pm-wrk-crtv__img {
  width: 80%;
  height: auto;
  border-radius: 32px;
}
.pm-wrk-crtv__img img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
.pm-wrk-crtv .pm-heading h2 {
  padding-top: 0;
}

@media (max-width: 767px) {
  .pm-wrk-crtv__outer {
    flex-direction: column;
  }
  .pm-wrk-crtv__w-30, .pm-wrk-crtv__w-70, .pm-wrk-crtv__img {
    width: 100%;
  }
}
.pm-feedback-crtv {
  padding: 80px 0;
  background-color: var(--color-bg);
}
.pm-feedback-crtv__box {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  border-radius: 24px;
  padding: 50px 50px 80px;
  background-color: var(--color-white);
}
.pm-feedback-crtv__cntrn {
  display: flex;
  align-items: flex-start;
}
.pm-feedback-crtv__cntrn span {
  width: 22px;
  height: 22px;
  display: inline-block;
}
.pm-feedback-crtv .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  transform: rotate(90deg);
  right: -60%;
  top: 28%;
  height: 30px;
}
.pm-feedback-crtv .slick-dots li button:before {
  font-size: 22px;
}
.pm-feedback-crtv .slick-dots li.slick-active button:before {
  color: var(--color-blue);
}
.pm-feedback-crtv .slick-dots li {
  margin: 0;
}
.pm-feedback-crtv__outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.pm-feedback-crtv__60 {
  width: 45%;
  padding-top: 40px;
  position: relative;
  z-index: 100;
}
.pm-feedback-crtv__60 .padlft {
  padding-left: 50px;
}
.pm-feedback-crtv__40 {
  width: 40%;
}
.pm-feedback-crtv__blubox {
  background: var(--Blue, #403CB1);
  border-radius: 24px;
  padding: 65px 45px;
}
.pm-feedback-crtv__blubox p, .pm-feedback-crtv__blubox a {
  font-size: 24px;
  line-height: 36px;
  color: var(--color-white);
  font-family: "Sofia Pro light", sans-serif;
}
.pm-feedback-crtv__blubox a {
  text-decoration: underline;
}
.pm-feedback-crtv__cnt {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-grey);
  display: inline;
  padding-top: 20px;
}
.pm-feedback-crtv__cnt span img {
  rotate: 180deg;
  width: 22px;
  height: 22px;
}
.pm-feedback-crtv__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  padding-left: 22px;
}
.pm-feedback-crtv__round {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.pm-feedback-crtv__round img {
  width: 100%;
  height: 100%;
}
.pm-feedback-crtv__head {
  color: var(--color-black);
  font-size: 18px;
  line-height: 24px;
}
.pm-feedback-crtv__card p {
  color: var(--color-grey);
  font-size: 14px;
  line-height: 14px;
  padding-top: 5px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-feedback-crtv__blubox p, .pm-feedback-crtv__blubox a {
    font-size: 20px;
    line-height: 30px;
  }
  .pm-feedback-crtv__60 .padlft {
    padding-left: 20px;
  }
  .pm-feedback-crtv__60 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pm-feedback-crtv__outer {
    flex-direction: column;
    gap: 20px;
  }
  .pm-feedback-crtv__box {
    padding: 20px;
  }
  .pm-feedback-crtv__60, .pm-feedback-crtv__40 {
    width: 100%;
  }
  .pm-feedback-crtv__60 .padlft {
    padding-left: 0;
  }
  .pm-feedback-crtv .slick-dots {
    right: -52%;
  }
  .pm-feedback-crtv__blubox {
    padding: 60px 30px;
  }
  .pm-feedback-crtv {
    padding: 40px 0;
  }
}
.pm-blog-sec-crtve {
  padding: 50px 0 80px;
  background-color: var(--color-bg);
}
.pm-blog-sec-crtve__head-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-blog-sec-crtve__cntrn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 0 20px;
  gap: 30px;
}
.pm-blog-sec-crtve__cntrn .wdt-40 {
  width: 36%;
}
.pm-blog-sec-crtve__cntrn .wdt-50 {
  width: 63%;
}
.pm-blog-sec-crtve__sec-col {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-blog-sec-crtve__cntrn {
    flex-direction: column;
  }
  .pm-blog-sec-crtve__cntrn .wdt-40, .pm-blog-sec-crtve__cntrn .wdt-50 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-blog-sec-crtve__cntrn {
    flex-direction: column;
  }
  .pm-blog-sec-crtve__cntrn .wdt-40, .pm-blog-sec-crtve__cntrn .wdt-50 {
    width: 100%;
  }
  .pm-blog-sec-crtve__head-out {
    flex-direction: column;
    align-items: flex-start;
  }
  .pm-blog-sec-crtve {
    padding: 40px 0 0;
  }
}
.pm-bnnr-tech {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6% 0 4%;
}
.pm-bnnr-tech h1 {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 50px;
  padding: 30px 0;
  color: var(--color-white);
  font-family: "Sofia Pro ultra light", sans-serif;
}
.pm-bnnr-tech h1 img {
  width: 85px;
  height: auto;
  margin-right: 10px;
}
.pm-bnnr-tech p.cnt {
  color: var(--color-white);
  font-size: 20px;
  line-height: 32px;
  padding: 20px 0 10px;
  width: 85%;
  display: inline-block;
}
.pm-bnnr-tech__outer {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  padding-top: 30px;
  position: relative;
}
.pm-bnnr-tech__sec1 {
  width: 60%;
}
.pm-bnnr-tech__sec1 img {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-bnnr-tech__sec2 {
  width: 40%;
}
.pm-bnnr-tech__sec2 img {
  width: 100%;
  height: 340px;
}
.pm-bnnr-tech__w-30-r {
  width: 35%;
}
.pm-bnnr-tech__w-60 {
  width: 65%;
}
.pm-bnnr-tech__w-60 .outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 40px;
}
.pm-bnnr-tech__w-40 {
  width: 55%;
  height: 289px;
  border-radius: 20px;
}
.pm-bnnr-tech__w-40 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-bnnr-tech__txt-outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-bnnr-tech__head {
  font-size: 80px;
  line-height: 75px;
  font-weight: 900;
  white-space: nowrap;
  padding-bottom: 15px;
  font-family: "Sofia Pro bold", sans-serif;
}
.pm-bnnr-tech__head:nth-child(1) {
  background: linear-gradient(270deg, #27005d 0%, #300198 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-tech__head:nth-child(2) {
  background: linear-gradient(270deg, #13014f 0%, #500088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-tech__head:nth-child(3) {
  background: linear-gradient(270deg, #1f0155 0%, #5d008d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-tech__head:nth-child(4) {
  background: linear-gradient(270deg, #170149 0%, #730097 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-bnnr-tech__sec1 img, .pm-bnnr-tech__sec2 img {
    height: auto;
  }
  .pm-tchngy-bnr-slider h2 {
    font-size: 34px;
    line-height: 45px;
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-bnnr-tech__sec1 img, .pm-bnnr-tech__sec2 img {
    height: auto;
  }
  .pm-tchngy-bnr-slider h2 {
    font-size: 34px;
    line-height: 45px;
    width: 75%;
  }
}
@media (max-width: 767px) {
  .pm-bnnr-tech {
    height: 100%;
    padding: 15% 0 5%;
  }
  .pm-bnnr-tech h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .pm-bnnr-tech p.cnt,
  .pm-bnnr-tech__w-60 {
    width: 100%;
  }
  .pm-bnnr-tech__outer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .pm-bnnr-tech__w-60 .outer {
    flex-direction: column;
  }
  .pm-bnnr-tech__w-30-r {
    transform: rotate(0deg);
    width: 100%;
  }
  .pm-bnnr-tech__w-30,
  .pm-bnnr-tech__w-40 {
    width: 100%;
  }
  .pm-bnnr-tech__head {
    font-size: 40px;
    line-height: 42px;
  }
  .pm-bnnr-tech__sec1,
  .pm-bnnr-tech__sec2 {
    width: 100%;
  }
  .pm-bnnr-tech h1 {
    font-size: 54px;
    line-height: 54px;
  }
  .pm-bnnr-tech h1 img {
    width: 55px;
  }
}
.pm-avnu-sec-crtve.tech p.cnt {
  width: 55%;
}
.pm-avnu-sec-crtve.tech .pm-avnu-crd-crtve {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
}
.pm-avnu-sec-crtve.tech .pm-avnu-crd-crtve__cnt {
  min-height: 280px;
  width: 95%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-avnu-sec-crtve.tech .pm-avnu-crd-crtve {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-avnu-sec-crtve.tech .pm-avnu-crd-crtve {
    width: calc(50% - 20px);
  }
  .pm-avnu-sec-crtve.tech p.cnt {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-avnu-sec-crtve.tech .pm-avnu-crd-crtve {
    width: calc(100% - 20px);
  }
  .pm-avnu-sec-crtve.tech p.cnt {
    width: 100%;
  }
}
.pm-tab-tech {
  padding: 40px 0;
  background-color: var(--color-bg);
}
.pm-tab-tech__head-out {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pm-tab-tech .pm-heading p {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  width: 70%;
}
.pm-tab-tech__btn-out {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-tab-tech .nav-pills .nav-link.active, .pm-tab-tech .nav-pills .show > .nav-link {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 2px solid #312783;
}
.pm-tab-tech .nav-pills .nav-link {
  border-radius: 25px;
  background-color: var(--color-white);
  font-size: 16px;
  line-height: 16px;
  padding: 15px 25px;
  color: var(--color-black);
  border: 2px solid transparent;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-tab-tech .nav-pills {
  gap: 15px;
}
.pm-tab-tech .tab-content {
  padding: 70px 50px;
}
.pm-tab-tech__outer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -20px;
}
.pm-tab-tech .pm-accord-tech {
  width: calc(33.3% - 40px);
  margin: 0 20px 10px;
}
.pm-tab-tech__card-out {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.pm-tab-tech__card-out.gap0 {
  gap: 0;
}
.pm-tab-tech__card-out ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: disc;
  padding-left: 20px;
}
.pm-tab-tech__card-out ul li {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 5px;
  width: 50%;
}
.pm-tab-tech__card-out .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: disc;
  padding-left: 20px;
}
.pm-tab-tech__card-out .list li {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 5px;
  width: 100% !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-tab-tech .nav-pills {
    justify-content: center;
  }
  .pm-tech-card__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .pm-tab-tech .tab-content {
    padding: 20px;
  }
  .pm-tab-tech__head-out {
    flex-direction: column;
  }
  .pm-tab-tech .pm-heading p {
    width: 100%;
  }
  .pm-tab-tech .nav-pills {
    padding-top: 30px;
  }
  .pm-tab-tech .pm-accord-tech {
    width: calc(100% - 40px);
  }
  .pm-tab-tech__card-out {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .pm-tech-card__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pm-innov-tech {
  padding: 40px 0;
  background-color: var(--color-bg);
}
.pm-innov-tech__outer {
  background-color: var(--color-blue-1);
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.pm-innov-tech__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
  width: 90%;
  padding-bottom: 30px;
}
.pm-innov-tech__sec1 {
  width: 45%;
}
.pm-innov-tech__sec2 {
  width: 45%;
}
.pm-innov-tech__btn {
  border-radius: 10px;
  background-color: var(--color-white);
  color: var(--color-blue);
  padding: 12px 25px;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
}
.pm-innov-tech__btn img, .pm-innov-tech__btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.pm-innov-tech__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .pm-innov-tech__outer {
    flex-direction: column;
    padding: 20px;
  }
  .pm-innov-tech__sec1, .pm-innov-tech__sec2, .pm-innov-tech__cnt {
    width: 100%;
  }
}
.pm-bnnr-sltns {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6% 0 0;
}
.pm-bnnr-sltns h1 {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 50px;
  padding: 30px 0;
  color: var(--color-white);
  font-family: "Sofia Pro ultra light", sans-serif;
}
.pm-bnnr-sltns h1 img {
  width: 85px;
  height: auto;
  margin-right: 10px;
}
.pm-bnnr-sltns__img {
  width: 100%;
  height: auto;
}
.pm-bnnr-sltns__img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.pm-bnnr-sltns p.cnt {
  color: var(--color-white);
  font-size: 20px;
  line-height: 32px;
  padding: 20px 0 30px;
  width: 85%;
  display: inline-block;
}
.pm-bnnr-sltns__outer {
  display: flex;
  gap: 35px;
  align-items: flex-end;
  padding-top: 30px;
  position: relative;
}
.pm-bnnr-sltns__w-30 {
  width: 45%;
  min-height: 289px;
}
.pm-bnnr-sltns .pm-sltns-bnr-slider__slider {
  min-height: 289px;
}
.pm-bnnr-sltns__w-30-r {
  width: 30%;
}
.pm-bnnr-sltns__w-30-r .outer {
  width: -moz-fit-content;
  width: fit-content;
}
.pm-bnnr-sltns__w-60 {
  width: 70%;
}
.pm-bnnr-sltns__w-60 .outer {
  display: flex;
  gap: 30px;
  padding-top: 40px;
}
.pm-bnnr-sltns__w-40 {
  width: 55%;
  height: 289px;
  border-radius: 20px;
}
.pm-bnnr-sltns__w-40 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pm-bnnr-sltns__txt-outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-bnnr-sltns__head {
  font-size: 80px;
  line-height: 75px;
  font-weight: 900;
  white-space: nowrap;
  padding-bottom: 15px;
  font-family: "Sofia Pro bold", sans-serif;
}
.pm-bnnr-sltns__head:nth-child(1) {
  background: linear-gradient(270deg, #27005d 0%, #300198 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-sltns__head:nth-child(2) {
  background: linear-gradient(270deg, #13014f 0%, #500088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-sltns__head:nth-child(3) {
  background: linear-gradient(270deg, #1f0155 0%, #5d008d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm-bnnr-sltns__head:nth-child(4) {
  background: linear-gradient(270deg, #170149 0%, #730097 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-bnnr-sltns__head {
    font-size: 73px;
    line-height: 58px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-bnnr-sltns {
    height: 100%;
  }
  .pm-bnnr-sltns__outer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .pm-bnnr-sltns p.cnt,
  .pm-bnnr-sltns__w-60 {
    width: 100%;
  }
  .pm-bnnr-sltns__w-30,
  .pm-bnnr-sltns__w-40 {
    width: 46%;
  }
  .pm-bnnr-sltns__w-30-r {
    transform: rotate(0deg);
  }
  .pm-bnnr-sltns__head {
    font-size: 50px;
    line-height: 55px;
  }
  .pm-bnnr-sltns__w-30-r {
    width: 100%;
  }
  .pm-bnnr-sltns__w-30-r .outer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .pm-bnnr-sltns {
    height: 100%;
    padding: 15% 0 5%;
  }
  .pm-bnnr-sltns p.cnt,
  .pm-bnnr-sltns__w-60 {
    width: 100%;
  }
  .pm-bnnr-sltns__outer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .pm-bnnr-sltns__w-60 .outer {
    flex-direction: column;
  }
  .pm-bnnr-sltns__w-30-r {
    transform: rotate(0deg);
    width: 100%;
  }
  .pm-bnnr-sltns__w-30,
  .pm-bnnr-sltns__w-40 {
    width: 100%;
  }
  .pm-bnnr-sltns h1 {
    font-size: 54px;
    line-height: 54px;
  }
  .pm-bnnr-sltns h1 img {
    width: 55px;
  }
}
.pm-avnu-sec-crtve.sltns p.cnt {
  width: 55%;
}
.pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
}
.pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve.w-50 {
  width: calc(50% - 20px) !important;
}
.pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve.w-50 .pm-avnu-crd-crtve__cnt {
  min-height: 100%;
  padding-bottom: 20px;
}
.pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve__cnt {
  min-height: 280px;
  width: 95%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve {
    width: calc(50% - 20px);
  }
  .pm-avnu-sec-crtve.tech p.cnt {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve, .pm-avnu-sec-crtve.sltns .pm-avnu-crd-crtve.w-50 {
    width: calc(100% - 20px) !important;
  }
  .pm-avnu-sec-crtve.tech p.cnt, .pm-avnu-sec-crtve.sltns p.cnt {
    width: 100%;
  }
}
.pm-bnnr-mrktng {
  position: relative;
  width: 100%;
  height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 0;
}
.pm-bnnr-mrktng h1 {
  font-size: 54px;
  line-height: 70px;
  padding: 30px 0 40px;
  color: var(--color-white);
  font-family: "Sofia Pro bold", sans-serif;
  font-weight: 700;
}
.pm-bnnr-mrktng h1 span {
  font-weight: 400;
  font-family: "Sofia Pro ultra light", sans-serif;
}
.pm-bnnr-mrktng__img {
  width: 70%;
  height: auto;
}
.pm-bnnr-mrktng__img img {
  width: 100%;
  height: 100%;
}
.pm-bnnr-mrktng p.cnt {
  color: var(--color-white);
  font-size: 20px;
  line-height: 32px;
  padding: 20px 0 30px;
  width: 85%;
  display: inline-block;
}
.pm-bnnr-mrktng__outer {
  display: flex;
  gap: 35px;
  align-items: flex-end;
  padding-top: 30px;
  position: relative;
}
.pm-bnnr-mrktng__inner {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pm-bnnr-mrktng__inner .rvw-str {
  width: 180px;
  height: auto;
}
.pm-bnnr-mrktng__inner .rvw-str img {
  width: 100%;
  height: 100%;
}
.pm-bnnr-mrktng__inner .cnt-1 {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
}
.pm-bnnr-mrktng__inner .cnt-1 span {
  font-weight: 700;
}
.pm-bnnr-mrktng__w-60 {
  width: 60%;
}
.pm-bnnr-mrktng__w-30 {
  width: 30%;
  margin: auto;
}
.pm-bnnr-mrktng__btn-outer {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 20px;
}
.pm-bnnr-mrktng__btn {
  background: linear-gradient(112.71deg, #3c3ea9 12.95%, #a020f0 64.75%);
  display: inline-block;
  border-radius: 10px;
  text-align: center;
  color: var(--color-white);
  padding: 15px 24px;
  transition: all 0.3s ease-in-out;
}
.pm-bnnr-mrktng__btn:hover {
  background: linear-gradient(100.71deg, #3c3ea9 18.95%, #a020f0 70.75%);
}
.pm-bnnr-mrktng .website-input {
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  width: 380px;
  outline: none;
}

@media (max-width: 767px) {
  .pm-bnnr-mrktng__outer {
    flex-direction: column;
  }
  .pm-bnnr-mrktng {
    height: 100%;
    padding: 20% 0 10%;
  }
  .pm-bnnr-mrktng__w-60,
  .pm-bnnr-mrktng__w-30,
  .pm-bnnr-mrktng .website-input,
  .pm-bnnr-mrktng p.cnt {
    width: 100%;
  }
  .pm-bnnr-mrktng__inner,
  .pm-bnnr-mrktng__btn-outer {
    flex-direction: column;
  }
  .pm-bnnr-mrktng h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .pm-bnnr-mrktng__w-30 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pm-bnnr-mrktng__img {
    width: 50%;
  }
}
.pm-custmr-mrktng {
  padding: 60px 0;
  background-color: var(--color-bg);
}
.pm-custmr-mrktng .pm-heading h2 {
  width: 45%;
}
.pm-custmr-mrktng__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 20px;
}
.pm-custmr-mrktng__outer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px -10px;
}
.pm-custmr-mrktng .pm-cstmr-card {
  width: calc(50% - 20px);
  margin: 0 10px 20px;
}
.pm-custmr-mrktng .pm-cstmr-card:hover {
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .pm-custmr-mrktng .pm-cstmr-card {
    width: calc(100% - 20px);
    padding: 20px;
  }
  .pm-cstmr-card__head, .pm-custmr-mrktng .pm-heading h2 {
    width: 100%;
  }
  .pm-custmr-mrktng {
    padding: 20px 0 0;
  }
}
.pm-bnnr-trng {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 4%;
}
.pm-bnnr-trng__sub {
  font-size: 22px;
  line-height: 32px;
  color: var(--color-white);
  padding: 10px 0 20px;
  width: 80%;
}
.pm-bnnr-trng__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 45px;
}
.pm-bnnr-trng__wht-bg {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
}
.pm-bnnr-trng__head {
  text-align: center;
  color: var(--color-white);
  font-size: 20px;
  line-height: 26px;
}
.pm-bnnr-trng__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.pm-bnnr-trng__inner .sub {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-white);
}
.pm-bnnr-trng__w-60 {
  width: 60%;
}
.pm-bnnr-trng__w-60 h1, .pm-bnnr-trng__w-60 h2 {
  font-size: 60px;
  line-height: 75px;
  padding: 30px 0;
  color: var(--color-white);
  font-family: "Sofia Pro bold", sans-serif;
  width: 70%;
}
.pm-bnnr-trng__w-30 {
  width: 40%;
}
.pm-bnnr-trng__wht-line {
  width: 1px;
  background-color: var(--color-white);
  height: auto;
  margin: 0 10px;
}
.pm-bnnr-trng__btn {
  background-color: var(--color-white);
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  color: var(--color-black);
  margin-top: 30px;
  font-size: 20px;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}
.pm-bnnr-trng__btn:hover {
  opacity: 0.8;
}
.pm-bnnr-trng__sec2 {
  background-color: var(--color-white);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  padding: 50px 20px 45px;
  width: 75%;
}
.pm-bnnr-trng__sec2 .head {
  color: var(--color-black);
  font-size: 22px;
  line-height: 28px;
  padding-bottom: 40px;
  font-weight: 600;
}
.pm-bnnr-trng__sec2 h2.head {
  font-size: 30px;
  line-height: 46px;
  color: var(--color-black);
  font-weight: 600;
  padding-bottom: 10px;
}
.pm-bnnr-trng__cnt {
  color: var(--color-grey-2);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.pm-bnnr-trng__logo {
  width: 80px;
  height: auto;
  position: absolute;
  top: 0;
  right: 12%;
}
.pm-bnnr-trng__logo img {
  width: 100%;
  height: 100%;
}
.pm-bnnr-trng__warn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-bnnr-trng__warn .logo {
  width: 20px;
  height: auto;
}
.pm-bnnr-trng__warn .logo img {
  width: 100%;
  height: 100%;
}
.pm-bnnr-trng___grey-sec {
  background-color: #F8F8FF;
  width: 75%;
  padding: 30px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.pm-bnnr-trng .pm-btn-3 {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.pm-bnnr-trng .pm-btn-3 button {
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-bnnr-trng__wht-bg, .pm-bnnr-trng__inner {
    padding: 6px;
  }
  .pm-bnnr-trng__wht-line {
    margin: 0 5px;
  }
  .pm-bnnr-trng__sec2, .pm-bnnr-trng___grey-sec {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-bnnr-trng__wht-bg, .pm-bnnr-trng__inner {
    padding: 10px;
  }
  .pm-bnnr-trng__wht-line {
    display: none;
  }
  .pm-bnnr-trng__sec2, .pm-bnnr-trng___grey-sec {
    width: 100%;
  }
  .pm-bnnr-trng__wht-bg {
    flex-wrap: wrap;
    width: 100%;
  }
  .pm-bnnr-trng__w-60 h1, .pm-bnnr-trng__w-60 h2 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .pm-bnnr-trng__outer {
    flex-direction: column;
  }
  .pm-bnnr-trng__w-60, .pm-bnnr-trng__w-30 {
    width: 100%;
  }
  .pm-bnnr-trng__wht-bg {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
  .pm-bnnr-trng__wht-line {
    display: none;
  }
  .pm-bnnr-trng__inner {
    padding: 20px;
  }
  .pm-bnnr-trng__sec2, .pm-bnnr-trng___grey-sec, .pm-bnnr-trng__w-60 h1, .pm-bnnr-trng__w-60 h2, .pm-bnnr-trng__sub {
    width: 100%;
  }
  .pm-bnnr-trng__w-60 h1, .pm-bnnr-trng__w-60 h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
.pm-casestdy-inner {
  padding: 90px 0;
  background-color: var(--color-bg);
}
.pm-casestdy-inner__cntr-sec {
  width: 60%;
  margin: auto;
}
.pm-casestdy-inner__head-out {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pm-casestdy-inner .pm-heading h2 {
  width: 85%;
  padding-top: 0;
}
.pm-casestdy-inner .pm-btn-4 {
  margin-top: 5px;
}
.pm-casestdy-inner .pm-btn-4:hover svg path {
  fill: var(--color-white);
}
.pm-casestdy-inner__tag {
  background-color: var(--color-purple-lgt);
  border-radius: 16px;
  font-size: 16px;
  line-height: 16px;
  padding: 14px 24px;
  color: var(--color-black);
  width: -moz-max-content;
  width: max-content;
}
.pm-casestdy-inner__tag-outer {
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  gap: 10px;
  flex-wrap: wrap;
}
.pm-casestdy-inner__head {
  color: var(--color-blue);
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 8px;
}
.pm-casestdy-inner__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 30px;
}
.pm-casestdy-inner__full-img {
  width: 100%;
  height: auto;
}
.pm-casestdy-inner__full-img img {
  width: 100%;
  height: 100%;
}
.pm-casestdy-inner__tile-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px -10px;
}
.pm-casestdy-inner .pm-casestdy-tile {
  width: calc(33.33% - 20px);
  margin: 0 10px;
}
.pm-casestdy-inner__img {
  width: 100%;
  height: auto;
  margin: 30px 0;
}
.pm-casestdy-inner__img img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
.pm-casestdy-inner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.pm-casestdy-inner__inner p {
  padding-bottom: 0;
}
.pm-casestdy-inner .img {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-casestdy-inner .pm-heading h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .pm-casestdy-inner__cntr-sec {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .pm-casestdy-inner__cntr-sec {
    width: 100%;
  }
  .pm-casestdy-inner__head-out {
    flex-direction: column;
  }
  .pm-casestdy-inner .pm-heading h2 {
    width: 100%;
  }
  .pm-casestdy-inner {
    padding: 40px 0;
  }
}
.pm-related-work {
  padding: 50px 30px;
  background-color: var(--color-bg);
}
.pm-related-work__head-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-related-work .pm-heading h2 {
  font-weight: 600;
}
.pm-related-work__outer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px -20px;
}
.pm-related-work .pm-case-study-card, .pm-related-work .pm-blog-crd {
  width: calc(33.3% - 40px);
  margin: 0 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-related-work .pm-case-study-card, .pm-related-work .pm-blog-crd {
    width: calc(50% - 40px);
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pm-related-work .pm-case-study-card, .pm-related-work .pm-blog-crd {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }
  .pm-related-work {
    padding: 50px 0;
  }
}
.pm-about-inner {
  background-color: var(--color-bg);
  padding: 70px 0 20px;
}
.pm-about-inner__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-about-inner__w-50 {
  width: 50%;
}
.pm-about-inner__w-30 {
  width: 39%;
}
.pm-about-inner__w-30 p {
  color: var(--color-blue);
  font-size: 22px;
  line-height: 32px;
}
.pm-about-inner__cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 15px;
}
.pm-about-inner__cnt.blue {
  color: var(--color-blue);
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 30px;
}
.pm-about-inner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 40px 0 20px;
}
.pm-about-inner__inner .sec {
  width: 50%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  transition: all 0.3s ease-in-out;
}
.pm-about-inner__inner .sec:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
}
.pm-about-inner__inner .sec-1 {
  width: 33.3%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  transition: all 0.3s ease-in-out;
}
.pm-about-inner__inner .sec-1:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
}
.pm-about-inner__inner .head {
  color: var(--color-grey-4);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  position: relative;
  display: inline-block;
  padding: 10px 0;
}
.pm-about-inner__inner .head::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-purple);
}
.pm-about-inner__inner .cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  min-height: 55px;
}
.pm-about-inner__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
}
.pm-about-inner__wrap .w-sec1 {
  width: 50%;
}
.pm-about-inner__wrap .w-sec1 img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
}
.pm-about-inner__wrap .w-sec2 {
  width: 45%;
}
.pm-about-inner__wrap .list {
  list-style: disc;
  padding-left: 20px;
}
.pm-about-inner__wrap .list li {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 32px;
  width: 90%;
  padding-bottom: 5px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-about-inner__inner .cnt {
    min-height: 67px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-about-inner__inner .cnt {
    min-height: 67px;
  }
  .pm-about-inner__wrap .list li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-about-inner__outer {
    flex-direction: column;
  }
  .pm-about-inner__w-50, .pm-about-inner__w-30 {
    width: 100%;
  }
  .pm-about-inner {
    padding: 40px 0 0;
  }
  .pm-about-inner__inner {
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }
  .pm-about-inner__inner .sec {
    width: 100%;
  }
  .pm-about-inner__wrap {
    flex-direction: column;
    padding-top: 50px;
  }
  .pm-about-inner__wrap .w-sec1, .pm-about-inner__wrap .w-sec2 {
    width: 100%;
  }
  .pm-about-inner__wrap .list li {
    width: 100%;
  }
  .pm-about-inner__inner .sec-1 {
    width: 100%;
  }
}
.pm-enhnce-wdc {
  background-color: var(--color-bg);
  padding: 60px 0;
}
.pm-enhnce-wdc__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pm-enhnce-wdc__w-40 {
  width: 45%;
}
.pm-enhnce-wdc__w-50 {
  width: 50%;
}
.pm-enhnce-wdc .pm-heading h2 {
  padding-bottom: 40px;
}
.pm-enhnce-wdc__img {
  width: 100%;
  height: auto;
}
.pm-enhnce-wdc__img img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
}
.pm-enhnce-wdc__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .pm-enhnce-wdc__outer {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .pm-enhnce-wdc__w-40, .pm-enhnce-wdc__w-50 {
    width: 100%;
  }
  .pm-enhnce-wdc {
    padding: 10px 0;
  }
}
.pm-specialised-wds {
  background-color: var(--color-bg);
  padding: 40px 0;
}
.pm-specialised-wds__outer {
  border-radius: 42px;
  background-color: var(--color-white);
  padding: 65px 50px;
}
.pm-specialised-wds__outer p.cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  width: 36%;
  padding-bottom: 25px;
}
.pm-specialised-wds__outer.grey {
  background-color: var(--color-bg);
  padding: 0 0 30px;
}
.pm-specialised-wds .pm-accord-tech {
  width: calc(33.3% - 20px);
  margin: 0 10px;
}
.pm-specialised-wds .pm-tab-tech__outer {
  padding-top: 20px;
  margin: 0;
}
.pm-specialised-wds .pm-tab-tech__card-out {
  margin: 30px 0 20px;
}
.pm-specialised-wds .btns {
  color: var(--color-blue);
  font-size: 16px;
  line-height: 26px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-specialised-wds__outer p.cnt {
    width: 60%;
  }
  .pm-tab-tech__card-out ul li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-specialised-wds__outer {
    padding: 20px;
  }
  .pm-specialised-wds__outer p.cnt {
    width: 100%;
  }
  .pm-specialised-wds .pm-accord-tech {
    width: calc(100% - 20px);
    margin-bottom: 20px;
  }
  .pm-tab-tech__card-out ul li {
    width: 100%;
  }
  .pm-specialised-wds .pm-heading p.grey {
    width: 100%;
  }
  .pm-specialised-wds__outer.grey {
    padding-bottom: 0;
  }
}
.pm-srvce-sec-hme {
  background-color: var(--color-bg);
  padding: 40px 0 60px;
}
.pm-srvce-sec-hme .pm-heading h2 {
  text-align: center;
  padding-bottom: 40px;
}
.pm-srvce-sec-hme__outer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 60px -10px 0;
}
.pm-srvce-sec-hme .pm-service-card {
  width: calc(25% - 20px);
  margin: 0 10px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-service-card__logo {
    margin: -40% auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-srvce-sec-hme .pm-service-card {
    width: calc(50% - 20px);
    margin-bottom: 80px;
  }
  .pm-service-card__logo {
    margin: -20% auto 0;
  }
}
@media (max-width: 767px) {
  .pm-srvce-sec-hme .pm-service-card {
    width: calc(100% - 20px);
    margin-bottom: 80px;
  }
  .pm-service-card__logo {
    margin: -20% auto 0;
  }
  .pm-srvce-sec-hme {
    padding-bottom: 20px;
  }
}
.pm-ecommerce-sec-ewd {
  padding: 50px 0 80px;
  background-color: var(--color-bg);
}
.pm-ecommerce-sec-ewd__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.pm-ecommerce-sec-ewd__sec1 {
  width: 40%;
}
.pm-ecommerce-sec-ewd__sec2 {
  width: 55%;
}
.pm-ecommerce-sec-ewd__img {
  width: 100%;
  height: auto;
}
.pm-ecommerce-sec-ewd__img img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
}
.pm-ecommerce-sec-ewd__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--clr-grey);
  padding-bottom: 20px;
}
.pm-ecommerce-sec-ewd .pm-accord-tech {
  border-top: none;
}
.pm-ecommerce-sec-ewd .pm-accord-tech {
  margin-bottom: 0;
}
.pm-ecommerce-sec-ewd .pm-accord-tech__cnt {
  padding-bottom: 10px;
}
.pm-ecommerce-sec-ewd .pm-accord-tech__arw {
  cursor: pointer;
}
.pm-ecommerce-sec-ewd .pm-accord-tech__head {
  cursor: pointer;
}

@media (max-width: 767px) {
  .pm-ecommerce-sec-ewd__outer {
    flex-direction: column;
  }
  .pm-ecommerce-sec-ewd__sec1, .pm-ecommerce-sec-ewd__sec2 {
    width: 100%;
  }
}
.pm-transition-sec {
  background-color: var(--color-bg);
  padding: 40px 0 60px;
}
.pm-transition-sec__head {
  color: var(--color-blue);
  font-size: 54px;
  line-height: 70px;
  padding: 30px 0;
  text-align: center;
}
.pm-transition-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 40px;
  margin: 0 -20px;
}
.pm-transition-sec .pm-train-card {
  width: calc(20% - 40px);
  margin: 0 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-transition-sec .pm-train-card {
    width: calc(50% - 40px);
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pm-transition-sec .pm-train-card {
    width: calc(100% - 40px);
    margin-bottom: 30px;
  }
  .pm-transition-sec__outer {
    padding: 30px 0;
  }
  .pm-transition-sec__head {
    font-size: 40px;
    line-height: 54px;
  }
  .pm-transition-sec {
    padding: 30px 0;
  }
}
.pm-live-sec {
  background-color: var(--color-white);
  padding: 50px 0;
}
.pm-live-sec .pm-heading h2 {
  text-align: center;
}
.pm-live-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
  margin: 0 -10px;
}
.pm-live-sec .pm-train-live-card {
  width: calc(33.3% - 20px);
  margin: 0 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-live-sec .pm-train-live-card {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pm-live-sec .pm-train-live-card {
    width: calc(100% - 20px);
    margin-bottom: 20px;
  }
}
.pm-learn-sec {
  padding: 50px 0;
  background-color: var(--color-bg);
}
.pm-learn-sec .pm-heading h2 {
  text-align: center;
}
.pm-learn-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
  margin: 0 -10px;
}
.pm-learn-sec .pm-train-card-1 {
  width: calc(25% - 20px);
  margin: 0 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-learn-sec .pm-train-card-1 {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pm-learn-sec .pm-train-card-1 {
    width: calc(100% - 20px);
    margin-bottom: 20px;
  }
}
.pm-plcment-sec {
  background-color: var(--color-bg);
  padding: 80px 0 0;
}
.pm-plcment-sec__bg {
  background-color: var(--color-white);
  padding: 30px 0;
}
.pm-plcment-sec .pm-heading h2 {
  text-align: center;
}
.pm-plcment-sec__cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
  text-align: center;
}
.pm-plcment-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 70px 0;
  margin: 0 -10px;
}
.pm-plcment-sec__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: calc(33.3% - 20px);
  margin: 0 10px;
}
.pm-plcment-sec__card .logo {
  width: 80px;
  height: auto;
}
.pm-plcment-sec__card .logo img {
  width: 100%;
  height: 100%;
}
.pm-plcment-sec__card .txt {
  color: var(--color-grey);
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .pm-plcment-sec__card {
    width: calc(100% - 20px);
    margin-bottom: 30px;
  }
  .pm-plcment-sec__outer {
    padding: 20px 0;
  }
}
.pm-scorlshp-sec {
  width: 100%;
  height: 490px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.pm-scorlshp-sec__outer {
  width: 60%;
  padding-top: 30px;
}
.pm-scorlshp-sec p {
  color: var(--color-white-1);
  font-size: 16px;
  line-height: 26px;
  padding: 20px 0 40px;
  width: 42%;
}
.pm-scorlshp-sec__logo {
  width: 160px;
  height: auto;
}
.pm-scorlshp-sec__logo img {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-scorlshp-sec p {
    width: 55%;
  }
  .pm-scorlshp-sec {
    background-position: 60% 0;
  }
}
@media (max-width: 767px) {
  .pm-scorlshp-sec {
    background-position: left;
  }
  .pm-scorlshp-sec__outer {
    width: 100%;
  }
  .pm-scorlshp-sec p {
    width: 100%;
  }
}
.pm-tools-sec {
  padding: 70px 0;
  background-color: var(--color-bg);
}
.pm-tools-sec__bg {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 40px;
}
.pm-tools-sec .pm-heading h2 {
  text-align: center;
}
.pm-tools-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 40px -10px 0;
}
.pm-tools-sec .pm-tools-trng {
  width: calc(25% - 20px);
  margin: 20px 10px 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-tools-sec .pm-tools-trng {
    width: calc(50% - 20px);
    margin: 20px 10px 30px;
  }
}
@media (max-width: 767px) {
  .pm-tools-sec .pm-tools-trng {
    width: calc(100% - 20px);
    margin: 20px 10px 30px;
  }
  .pm-tools-sec__bg {
    padding: 20px;
  }
}
.pm-career-sec {
  background-color: var(--color-bg);
  padding: 40px 0;
}
.pm-career-sec__cnt {
  color: var(--color-grey);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
  text-align: center;
  width: 50%;
  margin: auto;
}
.pm-career-sec .pm-heading h2 {
  text-align: center;
}
.pm-career-sec__outer {
  padding: 30px 0;
}
.pm-career-sec .pm-career-accrd {
  margin-bottom: 20px;
}
.pm-career-sec__inner {
  display: flex;
  justify-content: center;
  padding: 60px 0 30px;
}
.pm-career-sec__inner p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  text-align: center;
}
.pm-career-sec__inner p a {
  color: var(--color-blue);
  font-size: 20px;
  line-height: 30px;
}
.pm-career-sec__inner p a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-career-sec__cnt {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .pm-career-sec__cnt {
    width: 100%;
  }
}
.pm-careeer-inr-sec {
  padding: 40px 0 80px;
  background-color: var(--color-bg);
}
.pm-careeer-inr-sec__outer {
  padding-bottom: 25px;
}
.pm-careeer-inr-sec__outer p,
.pm-careeer-inr-sec__outer li {
  font-size: 16px;
  line-height: 32px;
  color: var(--color-grey);
}
.pm-careeer-inr-sec__outer ul {
  list-style: disc;
  padding-left: 20px;
}
.pm-careeer-inr-sec__head {
  color: var(--color-blue);
  font-size: 32px;
  line-height: 40px;
  padding: 10px 0 20px;
}
.pm-careeer-inr-sec .resume-label {
  font-size: 14px;
  color: #1a0dab; /* Google-style blue */
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: underline;
}
.pm-careeer-inr-sec .resume-upload-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.pm-careeer-inr-sec .resume-placeholder {
  color: #666;
  font-size: 14px;
}
.pm-careeer-inr-sec .resume-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.pm-careeer-inr-sec .pm-cntct-form textarea {
  min-height: 150px;
}
.pm-careeer-inr-sec .pm-cntct-form .pm-btn {
  width: 10%;
  border-radius: 25px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-careeer-inr-sec .pm-cntct-form .pm-btn {
    width: 18%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-careeer-inr-sec .pm-cntct-form .pm-btn {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .pm-careeer-inr-sec__head {
    font-size: 26px;
    line-height: 36px;
  }
  .pm-careeer-inr-sec .pm-cntct-form .pm-btn {
    width: 40%;
  }
  .pm-careeer-inr-sec {
    padding: 40px 0 60px;
  }
}
.pm-error {
  background-color: #050332;
  padding: 40px 0;
}
.pm-error__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-error__outer h1 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 10px;
}
.pm-error__outer p {
  color: var(--color-white);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 20px;
}
.pm-error__outer img {
  width: 60%;
  height: auto;
}
.pm-error__outer img img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .pm-error__outer {
    padding: 30px 0;
  }
  .pm-error img {
    width: 80%;
  }
  .pm-error {
    padding: 80px 0 40px;
  }
  .pm-error__outer {
    flex-direction: column;
  }
}
.pm-get-quote-sec {
  padding: 60px 0;
}
.pm-get-quote-sec__outer {
  padding: 30px 60px;
}
.pm-get-quote-sec .pm-cntct-form .pm-btn {
  width: 12%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-get-quote-sec .pm-cntct-form .pm-btn {
    width: 20%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-get-quote-sec .pm-cntct-form .pm-btn {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .pm-get-quote-sec__outer {
    padding: 0;
  }
  .pm-get-quote-sec .pm-cntct-form .pm-btn {
    width: 40%;
  }
  .pm-get-quote-sec {
    padding: 30px 0;
  }
}
.pm-blog-sec {
  padding: 90px 0 70px;
  background-color: var(--color-bG);
}
.pm-blog-sec .nav {
  justify-content: center;
  gap: 24px;
}
.pm-blog-sec .nav-pills .nav-link {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 16px;
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
}
.pm-blog-sec .nav-pills .nav-link img {
  width: 20px;
  height: 20px;
}
.pm-blog-sec .nav-pills .nav-link.active, .pm-blog-sec .nav-pills .show > .nav-link {
  border: 2px solid var(--color-purple);
}
.pm-blog-sec__outer {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 30px 60px;
}
.pm-blog-sec .pm-blog-crd {
  width: calc(33.3% - 20px);
  margin: 30px 10px;
  display: inline-block;
}
.pm-blog-sec .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.pm-blog-sec .pagination .page,
.pm-blog-sec .pagination .dots {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 4px 8px;
  transition: color 0.2s;
}
.pm-blog-sec .pagination .page:hover {
  color: var(--color-blue); /* hover color */
}
.pm-blog-sec .pagination .active {
  color: var(--color-blue); /* active page number */
  font-weight: bold;
}
.pm-blog-sec .pagination .dots {
  cursor: default;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-blog-sec .pm-blog-crd {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .pm-blog-sec .pm-blog-crd {
    width: calc(100% - 20px);
  }
  .pm-case-study-tab__outer {
    padding: 30px 0;
  }
  .pm-blog-sec {
    padding: 40px 0;
  }
}
.pm-blog-inner-sec {
  padding: 40px 0;
  background-color: var(--color-bg);
}
.pm-blog-inner-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding-bottom: 80px;
}
.pm-blog-inner-sec__w-20 {
  width: 20%;
  position: sticky;
  top: 0;
}
.pm-blog-inner-sec__w-20 h2 {
  color: var(--color-blue);
  font-size: 24px;
  line-height: 24px;
  padding: 20px 0;
}
.pm-blog-inner-sec__w-20 p,
.pm-blog-inner-sec__w-20 .cnt {
  color: var(--color-blue-1);
  font-size: 14px;
  line-height: 25px;
  padding-bottom: 10px;
  display: inline-block;
}
.pm-blog-inner-sec__w-20 ol {
  list-style: decimal;
  padding-left: 20px;
  color: var(--color-blue-1);
}
.pm-blog-inner-sec__w-20 ol li a {
  color: var(--color-blue-1);
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 10px;
  display: inline-flex;
}
.pm-blog-inner-sec__w-20-sec {
  width: 20%;
  position: sticky;
  top: 0;
}
.pm-blog-inner-sec__w-20-sec h2 {
  color: var(--color-blue);
  font-size: 24px;
  line-height: 24px;
  padding: 20px 0;
}
.pm-blog-inner-sec__w-20-sec p,
.pm-blog-inner-sec__w-20-sec .cnt {
  color: var(--color-blue-1);
  font-size: 14px;
  line-height: 25px;
  padding-bottom: 10px;
  display: inline-block;
}
.pm-blog-inner-sec__w-20-sec ol {
  list-style: decimal;
  padding-left: 20px;
  color: var(--color-blue-1);
}
.pm-blog-inner-sec__w-20-sec ol li a {
  color: var(--color-blue-1);
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 10px;
  display: inline-flex;
}
.pm-blog-inner-sec__w-60 {
  width: 60%;
}
.pm-blog-inner-sec__tag {
  box-shadow: 0px 0px 22px 0px rgba(152, 111, 176, 0.1607843137);
  background-color: var(--color-white);
  padding: 10px 15px;
  margin: 10px 0 10px 10px;
  border-radius: 16px;
  color: var(--color-blue);
  font-size: 16px;
  line-height: 28px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}
.pm-blog-inner-sec__tag:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.pm-blog-inner-sec__main-head {
  color: var(--color-blue);
  font-size: 46px;
  line-height: 50px;
  padding: 20px 0;
  width: 80%;
}
.pm-blog-inner-sec__sub {
  color: var(--color-blue);
  font-size: 28px;
  line-height: 32px;
  padding: 20px 0;
}
.pm-blog-inner-sec__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.pm-blog-inner-sec__inner .outer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-blog-inner-sec__inner .outer p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
}
.pm-blog-inner-sec__img {
  width: 100%;
  height: auto;
}
.pm-blog-inner-sec__img img {
  width: 100%;
  height: 100%;
}
.pm-blog-inner-sec__btn-outer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0 30px;
}
.pm-blog-inner-sec__cnt {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-grey);
  padding-bottom: 20px;
}
.pm-blog-inner-sec__list {
  list-style-type: disc;
  padding-left: 20px;
}
.pm-blog-inner-sec__list li {
  color: var(--color-blue);
  font-size: 28px;
  line-height: 36px;
  padding: 40px 0 0;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pm-blog-inner-sec__main-head {
    font-size: 36px;
    line-height: 46px;
  }
  .pm-blog-inner-sec__outer {
    gap: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pm-blog-inner-sec__main-head {
    font-size: 36px;
    line-height: 46px;
  }
  .pm-blog-inner-sec__outer {
    gap: 25px;
  }
  .pm-blog-inner-sec__w-20-sec {
    display: none;
  }
  .pm-blog-inner-sec__outer {
    flex-direction: column;
  }
  .pm-blog-inner-sec__w-60,
  .pm-blog-inner-sec__w-20 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pm-blog-inner-sec__w-20-sec {
    display: none;
  }
  .pm-blog-inner-sec__outer {
    flex-direction: column;
  }
  .pm-blog-inner-sec__w-60,
  .pm-blog-inner-sec__w-20 {
    width: 100%;
  }
  .pm-blog-inner-sec__main-head {
    font-size: 32px;
    line-height: 42px;
  }
  .pm-blog-inner-sec__inner .outer {
    flex-wrap: wrap;
  }
}
.pm-sem-sec {
  padding: 30px 0 10px;
  background-color: var(--color-bg);
}
.pm-sem-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -10px;
  flex-wrap: wrap;
}
.pm-sem-sec .pm-cstmr-card {
  width: calc(25% - 20px);
  margin: 0 10px;
}
.pm-sem-sec .pm-cstmr-card__cnt {
  padding-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pm-sem-sec .pm-cstmr-card {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pm-sem-sec .pm-cstmr-card {
    width: calc(100% - 20px);
    margin-bottom: 20px;
  }
}