@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
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;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  color: #424A5A;
  background-color: #ffffff;
}

[data-aos=zoom-in] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos=zoom-in].aos-animate {
  opacity: 1;
  transform: scale(1);
}

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: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  }
}


.pgd-head h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 66px;
  color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pgd-head h1 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .pgd-head h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
.pgd-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
  min-width: 200px;
  width: -moz-max-content;
  width: max-content;
}
.pgd-btn--primary {
  background: linear-gradient(90deg, #f15e24 0%, #e03e1a 100%);
  color: #ffffff;
}
.pgd-btn--primary:hover {
  background: linear-gradient(90deg, #e03e1a 0%, #f15e24 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 94, 36, 0.4);
  color: #ffffff;
}
.pgd-btn--secondary {
  --color: $color-navyblue;
  background-color: #0C0C84;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--color);
  transition: color 0.5s, transform 0.3s, box-shadow 0.3s;
  border-radius: 6px;
}
.pgd-btn--secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #F15E24;
  height: 150px;
  width: 250%;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}
.pgd-btn--secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12, 12, 132, 0.4);
}
.pgd-btn--secondary:hover:before {
  top: -40px;
  left: -40px;
}
.pgd-btn--secondary:active:before {
  background: #F15E24;
  transition: background 0s;
}
.pgd-btn--tertiary {
  background-color: transparent;
  color: #F15E24;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  transition: all 0.3s ease-in-out;
}
.pgd-btn--tertiary:hover {
  color: #0C0C84;
}
.pgd-btn--tertiary svg {
  width: 20px;
  height: 20px;
}
.pgd-btn--tertiary svg path {
  fill: #F15E24;
  transition: all 0.3s ease;
}
.pgd-btn--tertiary:hover svg path {
  fill: #0C0C84;
}
.pgd-btn--plain {
  background-color: transparent;
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ffffff;
  padding: 15px 24px;
}
.pgd-btn--plain:hover {
  background-color: #ffffff;
  color: #01205C;
}
.pgd-btn--plain:hover svg path {
  fill: #0C0C84;
}

.pgd-head-sec h2 {
  color: #000000;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  padding-bottom: 40px;
  text-align: center;
}
.pgd-head-sec p {
  color: #F15E24;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .pgd-head-sec h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.pgd-acccod {
  padding: 0 0 95px;
}
.pgd-acccod .pgd-accordian {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pgd-acccod .pgd-accordian-item {
  background-color: rgba(12, 12, 132, 0.1019607843);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pgd-acccod .pgd-accordian-item.active .pgd-accordian-content {
  max-height: 500px; /* Adjust as needed or use JS for precise height */
  padding: 0 30px 30px;
  opacity: 1;
}
.pgd-acccod .pgd-accordian-item.active .pgd-accordian-header {
  padding-bottom: 20px;
}
.pgd-acccod .pgd-accordian-item.active .pgd-accordian-header .icon::before {
  transform: rotate(0deg);
}
.pgd-acccod .pgd-accordian-item.active .pgd-accordian-header .icon::after {
  transform: rotate(0deg);
}
.pgd-acccod .pgd-accordian-header {
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: padding 0.3s ease;
}
.pgd-acccod .pgd-accordian-header h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #000000;
    width: calc(100% - 20px);
}
.pgd-acccod .pgd-accordian-header .icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgd-acccod .pgd-accordian-header .icon::before, .pgd-acccod .pgd-accordian-header .icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: transform 0.3s ease;
  transition-delay: 0.1s;
}
.pgd-acccod .pgd-accordian-header .icon::before {
  width: 100%;
  height: 3px;
}
.pgd-acccod .pgd-accordian-header .icon::after {
  width: 3px;
  height: 100%;
  transform: rotate(90deg);
}
.pgd-acccod .pgd-accordian-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 40px;
  opacity: 0;
  transition: all 0.5s ease;
}
.pgd-acccod .pgd-accordian-content p {
  margin-bottom: 16px;
  color: #424A5A;
  line-height: 16px;
  font-size: 18px;
}
.pgd-acccod .pgd-accordian-content p:last-child {
  margin-bottom: 0;
}

.pgd-accordian-content {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.pgd-accordian-content.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pgd-card-outer {
  position: relative;
  padding: 0 0 100px;
}

.pgd-card {
  border: 2px solid #01205c;
  border-radius: 20px;
  position: relative;
  padding: 55px 30px 40px;
  margin-bottom: 20px;
  min-height: 230px;
}
.pgd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #01205c;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.pgd-card .inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
}
.pgd-card .inner img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-card .inner h3 {
  color: #01205c;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.pgd-card__cnt {
  color: #424a5a;
}
.pgd-card__btn {
  color: #4848ea;
  display: inline-block;
  text-decoration: underline;
  margin-top: 15px;
}

.pgd-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pgd-header .offcanvas.offcanvas-end {
  height: 100vh;
}
.pgd-header .navbar-expand-lg {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.63) 100%);
  backdrop-filter: blur(8px);
}
.pgd-header__top {
  background-color: #0C0C84;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  max-height: 60px;
  overflow: hidden;
}
.pgd-header__top.hide {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.pgd-header__top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pgd-header__top p {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.pgd-header__top .inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pgd-header__top .inner svg {
  font-size: 16px;
  height: 16px;
}
.pgd-header__bottom {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.63) 100%);
  filter: blur(24px);
}
.pgd-header__logo {
  width: 165px;
  height: auto;
}
.pgd-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-header .offcanvas-body ul {
  gap: 60px;
}
.pgd-header .offcanvas-body ul a {
  font-weight: 500;
  color: #000000;
  font-size: 20px;
}
.pgd-header .offcanvas-body ul a:hover {
  color: #F15E24;
}
.pgd-header .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

@media (max-width: 767px) {
  .pgd-header__top .wrap {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .pgd-header__logo {
    width: 125px;
  }
  .pgd-header .offcanvas-body ul {
    gap: 40px;
  }
  .pgd-header__top {
    max-height: 100%;
  }
}
.pgd-herohme {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% 75px;
  width: 100%;
  height: 900px;
  position: relative;
}
.pgd-herohme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.42) 100%);
}
.pgd-herohme .pgd-btn {
  min-width: 135px;
}
.pgd-herohme__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 10;
  position: relative;
  height: 780px;
  padding-top: 25%;
}
.pgd-herohme__wrap p {
  margin-top: 18px;
  color: #ffffff;
}
.pgd-herohme__wrap .sec1 {
  width: 50%;
}
.pgd-herohme__wrap .sec2 {
  width: 40%;
}
.pgd-herohme__subhead {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  margin: 24px 0 18px;
  color: #ffffff;
}
.pgd-herohme__btn-outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.pgd-herohme__form {
  width: 100%;
  height: auto;
  padding: 38px 30;
}
.pgd-herohme .pgd-form-section {
  box-shadow: 0px 4px 24px 0px rgba(185, 185, 185, 0.2509803922);
  border-radius: 16px;
  margin-right: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pgd-herohme .pgd-form-section {
    margin-right: 0;
  }
  .pgd-herohme__btn-outer {
    flex-wrap: wrap;
  }
  .pgd-herohme__wrap .sec2 {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .pgd-herohme__wrap {
    flex-direction: column;
  }
  .pgd-herohme,
  .pgd-herohme__wrap {
    height: 100%;
  }
  .pgd-herohme__wrap .sec1,
  .pgd-herohme__wrap .sec2 {
    width: 100%;
  }
  .pgd-herohme__btn-outer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .pgd-herohme__wrap p {
    margin-bottom: 30px;
  }
  .pgd-herohme .pgd-form-section {
    margin-right: 0;
  }
  .pgd-herohme .pgd-btn {
    min-width: 160px;
  }
  .pgd-herohme__wrap {
    padding-top: 65%;
  }
  .pgd-herohme__wrap {
    padding-bottom: 30px;
  }
  .pgd-herohme {
    background-position: 40% 75px;
  }
}
.pgd-abouthme {
  padding: 120px 0;
}
.pgd-abouthme__logo {
  width: 124px;
  height: auto;
}
.pgd-abouthme__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-abouthme__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 90px;
}
.pgd-abouthme__wrap .sec1 {
  width: 50%;
}
.pgd-abouthme__wrap .sec2 {
  width: 50%;
}
.pgd-abouthme__img {
  width: 100%;
  height: 360px;
  position: relative;
}
.pgd-abouthme__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.pgd-abouthme__img-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C0C84;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding: 14px 40px;
  box-shadow: 4px 4px 24px 0px rgba(192, 192, 192, 0.2509803922);
  backdrop-filter: blur(40px);
  border-radius: 8px;
}
.pgd-abouthme .pgd-head-sec p,
.pgd-abouthme .pgd-head-sec h2 {
  text-align: left;
}
.pgd-abouthme .pgd-head-sec h2 {
  padding-bottom: 14px;
}
.pgd-abouthme__cnt {
  padding-bottom: 25px;
}
.pgd-abouthme__cnt p {
  padding-bottom: 16px;
  color: #424A5A;
}
.pgd-abouthme__cnt p span {
  font-weight: 600;
}
.pgd-abouthme__cnt p:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pgd-abouthme__wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .pgd-abouthme__wrap {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .pgd-abouthme__wrap .sec1,
  .pgd-abouthme__wrap .sec2 {
    width: 100%;
  }
  .pgd-abouthme__img {
    width: calc(100% - 20px);
  }
}
.pgd-servcehme {
  padding: 100px 0 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pgd-servcehme .pgd-btn {
  min-width: 150px;
}
.pgd-servcehme__wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* virtual grid */
  row-gap: 94px;
  -moz-column-gap: 34px;
       column-gap: 34px;
}
.pgd-servcehme__card {
  grid-column: span 2;
  display: inline-block;
  width: 100%;
}
.pgd-servcehme__card h3 {
  text-align: center;
  color: #000000;
  margin-top: 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
.pgd-servcehme__card:hover h3 {
  color: #F15E24;
  transform: translateY(-5px);
}
.pgd-servcehme__card:hover .pgd-servcehme__img img {
  transform: translateY(5px);
}
.pgd-servcehme__img {
  width: 100%;
  height: 350px;
}
.pgd-servcehme__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}
.pgd-servcehme__btn-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

/* ONLY when exactly 5 items */
.pgd-servcehme__wrap > div:nth-last-child(2):nth-child(4),
.pgd-servcehme__wrap > div:nth-last-child(1):nth-child(5) {
  grid-column: span 3; /* 50% each */
}

@media (max-width: 767px) {
  .pgd-servcehme__wrap {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.pgd-teamsecHme__bg {
  position: relative;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pgd-teamsecHme__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8980392157);
}
.pgd-teamsecHme__wrap {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
.pgd-teamsecHme__wrap .sec2 {
  width: 48%;
}
.pgd-teamsecHme__wrap h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
}
.pgd-teamsecHme__wrap h2 span {
  color: #F15E24;
}
.pgd-teamsecHme__outer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding-bottom: 110px;
}
.pgd-teamsecHme__outer .sec1 {
  width: 48%;
}
.pgd-teamsecHme__outer .sec2 {
  width: 48%;
}
.pgd-teamsecHme__outer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 114px;
  width: 100%;
}
.pgd-teamsecHme__cnt p {
  color: #424A5A;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 16px;
}
.pgd-teamsecHme__img {
  width: 100%;
  height: auto;
}
.pgd-teamsecHme__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .pgd-teamsecHme__wrap .sec2, .pgd-teamsecHme__outer .sec2 {
    width: 100%;
  }
  .pgd-teamsecHme__outer {
    flex-direction: column;
    gap: 30px;
  }
  .pgd-teamsecHme__outer .sec1, .pgd-teamsecHme__outer .sec2 {
    width: 100%;
  }
  .pgd-teamsecHme__outer {
    margin-top: 40px;
  }
}
.pgd-enquireSec {
  padding: 0 0 95px;
}
.pgd-enquireSec.inner {
  padding-top: 80px;
}
.pgd-enquireSec.inner .pgd-head-sec p, .pgd-enquireSec.inner .pgd-head-sec h2 {
  text-align: left;
}
.pgd-enquireSec__wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 97px;
  padding-top: 20px;
}
.pgd-enquireSec__wrap .sec1 {
  width: 55%;
}
.pgd-enquireSec__wrap .sec2 {
  width: 45%;
}
.pgd-enquireSec__wrap .sec2 p {
  padding-bottom: 24px;
}
.pgd-enquireSec__contact {
  margin-bottom: 24px;
}
.pgd-enquireSec__contact.mbot-10 {
  margin-bottom: 10px;
}
.pgd-enquireSec__contact .head {
  color: #424A5A;
  font-weight: 400;
}
.pgd-enquireSec__contact .cnt {
  font-weight: 600;
  color: #000000;
}
.pgd-enquireSec__contact .cnt:hover {
  color: #F15E24;
}
.pgd-enquireSec__social {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.pgd-enquireSec__social .inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pgd-enquireSec__social .inner .links {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.pgd-enquireSec__social .inner .links img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-enquireSec__map {
  width: 100%;
  height: 320px;
  margin-bottom: 24px;
  border: 1px solid #6b7280;
  border-radius: 10px;
}
.pgd-enquireSec__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.pgd-enquireSec__btn-outer {
  display: flex;
  justify-content: center;
}
.pgd-enquireSec .pgd-form-section {
  box-shadow: 0px 4px 24px 0px rgba(185, 185, 185, 0.2509803922);
  border-radius: 16px;
/*   padding: 35px 30px; */
}
.pgd-enquireSec .pgd-btn {
  min-width: 165px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pgd-enquireSec .pgd-form-section {
    padding: 24px 20px;
  }
  .pgd-enquireSec__wrap {
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pgd-enquireSec .pgd-form-section {
    padding: 24px 20px;
  }
  .pgd-enquireSec__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .pgd-enquireSec__wrap {
    flex-direction: column;
    gap: 30px;
  }
  .pgd-enquireSec .sec1,
  .pgd-enquireSec .sec2 {
    width: 100%;
  }
  .pgd-enquireSec .pgd-form-section {
    padding: 24px 20px;
  }
}
.pgd-footerbnnr {
  margin-bottom: 80px;
}
.pgd-footerbnnr__box {
  position: relative;
  background-color: #01205C;
  border-radius: 30px;
  padding: 60px 60px;
  height: 340px;
}
.pgd-footerbnnr__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  width: 80%;
}
.pgd-footerbnnr__wrap .sec1 {
  width: 50%;
}
.pgd-footerbnnr__wrap .sec2 {
  width: 50%;
}
.pgd-footerbnnr__wrap h2 {
  font-weight: 500;
  color: #ffffff;
  font-size: 40px;
  line-height: 46px;
  margin-bottom: 28px;
}
.pgd-footerbnnr__wrap p {
  color: #ffffff;
  padding-top: 10px;
}
.pgd-footerbnnr__img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 370px;
  width: auto;
}
.pgd-footerbnnr__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-bottom-right-radius: 30px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .pgd-footerbnnr__wrap h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pgd-footerbnnr__box {
    padding: 60px 40px;
    height: 100%;
  }
  .pgd-footerbnnr__wrap {
    gap: 30px;
    flex-direction: column;
  }
  .pgd-footerbnnr__wrap .sec1,
  .pgd-footerbnnr__wrap .sec2 {
    width: 80%;
  }
  .pgd-footerbnnr__wrap h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .pgd-footerbnnr__box {
    padding: 60px 40px;
    height: 100%;
  }
  .pgd-footerbnnr__wrap {
    gap: 30px;
    flex-direction: column;
  }
  .pgd-footerbnnr__wrap .sec1,
  .pgd-footerbnnr__wrap .sec2,
  .pgd-footerbnnr__wrap {
    width: 100%;
  }
  .pgd-footerbnnr__img {
    display: none;
  }
  .pgd-footerbnnr__wrap h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
.pgd-footer {
  border-top: 0.5px solid rgba(107, 114, 128, 0.3215686275);
}
.pgd-footer__top {
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pgd-footer__top .inner {
  display: flex;
  gap: 16px;
  align-items: center;
}
.pgd-footer__top .inner p {
  font-size: 26px;
  line-height: 30px;
}
.pgd-footer__logo {
  width: 160px;
  height: auto;
}
.pgd-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-footer__outer {
  background: linear-gradient(229.96deg, #0c0c84 -13.36%, #000000 72.83%);
  padding: 70px 0 50px;
}
.pgd-footer__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pgd-footer__wrap .sec1 {
  width: 35%;
}
.pgd-footer__wrap .sec2 {
  width: 40%;
}
.pgd-footer__cnt {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  padding-bottom: 64px;
}
.pgd-footer__head {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
}
.pgd-footer__licnce {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.pgd-footer__licnce span {
  color: #ffffff;
  font-weight: 500;
}
.pgd-footer__scl-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 50px;
}
.pgd-footer__scl-outer img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-footer__menu-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pgd-footer__menu-wrap .menus {
  width: 50%;
}
.pgd-footer__list {
  list-style: none;
}
.pgd-footer__list li .links {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
}
.pgd-footer__list li .links:hover {
  color: #F15E24;
}
.pgd-footer__btm {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pgd-footer__btm .inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.pgd-footer__btm .inner p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.pgd-footer__btm .terms-outer {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pgd-footer__btm .terms-outer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.pgd-footer__btm .terms-outer a:hover {
  color: #F15E24;
}
.pgd-footer__pwrd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.pgd-footer__pwrd p {
  font-size: 16px;
  color: #ffffff;
  width: 100%;
}
.pgd-footer__pwrd img {
  width: 100%;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767px) {
  .pgd-footer__top {
    flex-direction: column;
    gap: 34px;
  }
  .pgd-footer__top .inner {
    flex-direction: column;
    gap: 15px;
  }
  .pgd-footer__wrap {
    flex-direction: column;
    gap: 40px;
  }
  .pgd-footer__menu-wrap {
    flex-direction: column;
    gap: 24px;
  }
  .pgd-footer__wrap .sec1,
  .pgd-footer__wrap .sec2 {
    width: 100%;
  }
  .pgd-footer__menu-wrap .menus {
    width: 100%;
  }
  .pgd-footer__menu-wrap .menus {
    flex-wrap: wrap;
  }
  .pgd-footer__btm .inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .pgd-footer__btm {
    flex-direction: column;
    gap: 24px;
    justify-content: center;
  }
}
.pgd-inner-banner {
  width: 100%;
  height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 100px;
}
.pgd-inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.pgd-inner-banner__cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
  width: 100%;
}
.pgd-inner-banner__cnt h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
}

.pgd-termsSec {
  padding: 80px 0 90px;
}
.pgd-termsSec p {
  padding-bottom: 16px;
}
.pgd-termsSec a {
  color: #01205C;
}
.pgd-termsSec .pgd-head-sec p,
.pgd-termsSec .pgd-head-sec h2 {
  text-align: left;
}
.pgd-termsSec .pgd-head-sec h2 {
  padding-bottom: 16px;
}
.pgd-termsSec__cnt h2 {
  padding: 20px 0 16px;
  color: #01205C;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.pgd-termsSec__line {
  background-color: #e1e1e1;
  height: 1px;
  width: 100%;
  margin-top: 8px;
}

.pgd-termsSec__cnt p:last-child {
  padding-bottom: 0;
}

.pgd-error {
  background: linear-gradient(180deg, #01205c 35.38%, #0243c2 100%);
  padding-top: 150px;
}
.pgd-error__img {
  width: 100%;
  height: 100%;
}
.pgd-error__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pgd-error__btn-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}

@media (max-width: 767px) {
  .pgd-error {
    padding-top: 200px;
  }
	.pgd-inner-banner {
    height: 336px;
}
}
.pgd-card-outer {
  position: relative;
  padding: 0 0 100px;
}

.pgd-card {
  border: 2px solid #01205c;
  border-radius: 20px;
  position: relative;
  padding: 55px 30px 40px;
  margin-bottom: 20px;
  min-height: 230px;
}
.pgd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #01205c;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.pgd-card .inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
}
.pgd-card .inner img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgd-card .inner h3 {
  color: #01205c;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.pgd-card__cnt {
  color: #424a5a;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.pgd-card__cnt.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.pgd-card__btn {
  color: #4848ea;
  display: inline-block;
  text-decoration: underline;
  margin-top: 15px;
}
.pgd-footer__list li a {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
}
.footer-terms-wrapper {
    display: flex;
    flex-direction: column;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.footer-left {
    flex: 1;
}

.footer-center {
    flex: 2;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-terms-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
	width: 60%;
	padding:20px 0 0;
}