/*
 Theme Name:   Twenty Twenty Child
 Template:     twentytwenty
 Version:      1.0.0
*/

@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

:root {
  --primary-color: #5bc2e7;
  --primary-dark-color: #0c71ac;
  --primary-light-color: #eff9fd;
  --primary-medium-color: #8cd5ef;
  --black-color: #000000;
  --black-85-color: #4d4d4f;
  --black-55-color: #8a8c8e;
  --white-color: #ffffff;
  --aubergine-color: #1e1248;
  --aubergine-75-color: #544b73;
  --grey-secondary-color: #ececec;
  --yellow-color: #fed76f;
  --melon-color: #ed6b5e;
  --melon-85-color: #f6958a;
  --grape-color: #b49ad2;
  --tango-color: #f79554;
  --grey-dark-color: #494949;
  --grey-medium-color: #b7b7b7;
  --grey-light-on-light-color: #6e6e6e;
  --grey-light-color: #eeeeee;
  --grey-extra-light-color: #f7f7f7;
  --negative-color: #d6001d;
  --positive-color: #498406;
  --main-text-color: #262626;
  --transparent: transparent;
}

body {
  padding: 0rem;
  margin: 0rem;
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  background-color: var(--white-color);
  scroll-behavior: smooth;
  color: var(--main-text-color);
}

.body-no-scroll {
  overflow: hidden;
  position: relative;
}

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

.container-xxl {
  margin: 0 auto;
  max-width: 94rem;
  width: 100%;
}

@media screen and (min-width: 0) {
  .container-xxl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 576px) {
  .container-xxl {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .container-xxl {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 992px) {
  .container-xxl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 1264px) {
  .container-xxl {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 1920px) {
  .container-xxl {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 2560px) {
  .container-xxl {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0rem;
}

p {
  margin: 0rem;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0rem;
  padding: 0rem;
}

.cursor-pointer {
  cursor: pointer;
}

/* common css */
.primary-bg {
  background-color: var(--primary-color);
}

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

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

.transition-all,
.default-btn,
.program-card .card-body,
.news-events-card,
.news-events-card .card-body {
  transition: all 0.2s linear;
}

.material-symbols-outlined {
  display: inline-block;
  text-decoration: none !important;
}
.material-symbols-outlined.filled {
  font-variation-settings: "FILL" 1;
}

.default-btn {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 1rem;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  border-radius: 4rem !important;
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
  background-color: var(--melon-color);
  color: var(--aubergine-color);
  min-height: 4rem;
  width: 100%;
}

.default-btn:hover,
.default-btn:focus,
.default-btn:active {
  background-color: var(--melon-85-color) !important;
  color: var(--aubergine-color) !important;
}
.default-btn:hover .btn-label,
.default-btn:focus .btn-label,
.default-btn:active .btn-label {
  text-decoration: none;
}
.default-btn:hover .material-symbols-outlined,
.default-btn:focus .material-symbols-outlined,
.default-btn:active .material-symbols-outlined {
  text-decoration: none !important;
  border: none !important;
}
.default-btn.btn-outline {
  background-color: var(--transparent);
  border: 0.125rem solid var(--primary-color);
  outline-color: var(--primary-color);
  color: var(--primary-color) !important;
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
}
.default-btn.btn-outline:hover,
.default-btn.btn-outline:focus,
.default-btn.btn-outline:active {
  background-color: var(--primary-color) !important;
  border: 0.125rem solid var(--primary-color);
  outline-color: var(--primary-color);
  color: var(--black-color) !important;
}
.default-btn.btn-outline:hover .btn-label,
.default-btn.btn-outline:focus .btn-label,
.default-btn.btn-outline:active .btn-label {
  text-decoration: none;
}
.default-btn.btn-outline:hover .material-symbols-outlined,
.default-btn.btn-outline:focus .material-symbols-outlined,
.default-btn.btn-outline:active .material-symbols-outlined {
  text-decoration: none !important;
  border: none !important;
}

.default-btn.btn-outline-aubergine {
  background-color: var(--transparent);
  border: 0.125rem solid var(--aubergine-color);
  outline-color: var(--aubergine-color);
  color: var(--aubergine-color) !important;
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
}
.default-btn.btn-outline-aubergine:hover,
.default-btn.btn-outline-aubergine:focus,
.default-btn.btn-outline-aubergine:active {
  background-color: var(--aubergine-color) !important;
  border: 0.125rem solid var(--aubergine-color);
  outline-color: var(--aubergine-color);
  color: var(--white-color) !important;
}
.default-btn.btn-outline-aubergine:hover .btn-label,
.default-btn.btn-outline-aubergine:focus .btn-label,
.default-btn.btn-outline-aubergine:active .btn-label {
  text-decoration: none;
}
.default-btn.btn-outline-aubergine:hover .material-symbols-outlined,
.default-btn.btn-outline-aubergine:focus .material-symbols-outlined,
.default-btn.btn-outline-aubergine:active .material-symbols-outlined {
  text-decoration: none !important;
  border: none !important;
}

.default-btn.default-btn-primary {
  background-color: var(--primary-color);
  border: 0.125rem solid var(--primary-color);
  outline-color: var(--primary-color);
  color: var(--black-color) !important;
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
}
.default-btn.default-btn-primary:hover,
.default-btn.default-btn-primary:focus,
.default-btn.default-btn-primary:active {
  background-color: var(--primary-medium-color) !important;
  border: 0.125rem solid var(--primary-medium-color);
  outline-color: var(--primary-medium-color);
  color: var(--aubergine-color) !important;
}
.default-btn.default-btn-primary:hover .btn-label,
.default-btn.default-btn-primary:focus .btn-label,
.default-btn.default-btn-primary:active .btn-label {
  text-decoration: none;
}
.default-btn.default-btn-primary:hover .material-symbols-outlined,
.default-btn.default-btn-primary:focus .material-symbols-outlined,
.default-btn.default-btn-primary:active .material-symbols-outlined {
  text-decoration: none !important;
  border: none !important;
}
.default-btn.default-btn-secondary {
  background-color: var(--aubergine-color);
  border: 0.125rem solid var(--aubergine-color);
  outline-color: var(--aubergine-color);
  color: var(--white-color) !important;
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
}
.default-btn.default-btn-secondary:hover,
.default-btn.default-btn-secondary:focus,
.default-btn.default-btn-secondary:active {
  background-color: var(--aubergine-75-color) !important;
  border: 0.125rem solid var(--aubergine-75-color);
  outline-color: var(--aubergine-75-color);
}
.default-btn.default-btn-secondary:hover .btn-label,
.default-btn.default-btn-secondary:focus .btn-label,
.default-btn.default-btn-secondary:active .btn-label {
  text-decoration: none;
}
.default-btn.default-btn-secondary:hover .material-symbols-outlined,
.default-btn.default-btn-secondary:focus .material-symbols-outlined,
.default-btn.default-btn-secondary:active .material-symbols-outlined {
  text-decoration: none !important;
  border: none !important;
}
@media only screen and (min-width: 576px) {
  .default-btn {
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .default-btn {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    padding: 1rem 2.5rem;
  }
}

.text-link {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  display: inline-block;
  text-decoration: underline;
}

.text-link.primary-link {
  color: var(--primary-color);
}

.text-link.white-link {
  color: var(--white-color);
}

/* text colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

.main-text-color {
  color: var(--main-text-color) !important;
}

.text-red {
  color: var(--negative-color) !important;
}

.error-text {
  color: var(--negative-color) !important;
}

/* common paddings */
.p-t-0 {padding-top: 0rem;}
.p-b-0 {padding-bottom: 0rem;}

.p-8 {
  padding: 0.5rem;
}

.p-16 {
  padding: 1rem;
}

.p-24 {
  padding: 1.5rem;
}

.p-32 {
  padding: 2rem;
}

.p-48 {
  padding: 3rem;
}

.pb-4px {
  padding-bottom: 0.25rem;
}

.pb-8 {
  padding-bottom: 0.5rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pb-32 {
  padding-bottom: 2rem;
}

.pb-48 {
  padding-bottom: 3rem;
}

.pb-8-16 {
  padding-bottom: 0.5rem;
}

.pb-16-24 {
  padding-bottom: 1rem;
}

.pb-18-24 {
  padding-bottom: 1.125rem;
}

.pb-32-24 {
  padding-bottom: 2rem;
}

.pb-24-32 {
  padding-bottom: 1.5rem;
}

.pb-32-40 {
  padding-bottom: 2rem;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pt-16 {
  padding-top: 1rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pt-32 {
  padding-top: 2rem;
}

.pt-48 {
  padding-top: 3rem;
}

.pt-8-16 {
  padding-top: 0.5rem;
}

.pt-16-24 {
  padding-top: 1rem;
}

.pt-32-40 {
  padding-top: 2rem;
}

.pt-pb-8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-pb-16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-pb-32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-32-24 {
  padding-top: 2rem;
}

.pt-24-32 {
  padding-top: 1.5rem;
}

.pt-32-48 {
  padding-top: 2rem;
}

@media only screen and (min-width: 992px) {
  .pb-8-16 {
    padding-bottom: 1rem;
  }
  .pb-16-24 {
    padding-bottom: 1.5rem;
  }
  .pb-18-24 {
    padding-bottom: 1.5rem;
  }
  .pb-24-32 {
    padding-bottom: 2rem;
  }
  .pb-32-40 {
    padding-bottom: 2.5rem;
  }
  .pt-8-16 {
    padding-top: 1rem;
  }
  .pb-32-24 {
    padding-bottom: 1.5rem;
  }
  .pt-32-24 {
    padding-top: 1.5rem;
  }
  .pt-24-32 {
    padding-top: 2rem;
  }
  .pt-16-24 {
    padding-top: 1.5rem;
  }
  .pt-32-48 {
    padding-top: 3rem;
  }
  .pt-32-40 {
    padding-top: 2.5rem;
  }
}
.section-w-bg {
  background-color: var(--grey-light-color);
}

/* headings and texts */
.section-heading {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.75rem !important;
  line-height: 2.25rem !important;
  letter-spacing: 0.031rem !important;
}

.section-heading-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--main-text-color);
}

@media only screen and (min-width: 992px) {
  .section-heading {
    font-size: 3rem !important;
    line-height: 3.75rem !important;
  }
  .section-heading-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}

/* Footer section CSS */
.footer--py {
  padding: 2.5rem 0;
}
.sub-footer--py {
  padding: 0 0 3rem 0;
}
.bg-body-footer {
  background-color: var(--black-color);
  color: var(--white-color);
}
.sub-footer-sec {
  width: auto;
  /* border-top: solid 0.063rem var(--grey-medium-color); */
  position: relative;
}
.sub-footer-sec:before {
  content: "";
  width: calc(100% - 1.5rem);
  height: 0.063rem;
  background-color: var(--grey-medium-color);
  position: absolute;
  left: 0.75rem;
  top: 0;
}

.text-footer.small-head {
  font-size: 0.875rem;
}

.victoria-footer-logo img {
  display: block;
  max-height: 3.5rem;
}

.footer-nav {
  list-style: none;
  padding-top: 1.25rem !important;
  margin: 0;
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
}
.footer-nav li {
  position: relative;
  margin: 0;
}
.footer-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 0.125rem;
  color: var(--grey-medium-color);
}
.footer-nav a {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--grey-medium-color) !important;
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover {
  text-decoration: none;
  color: var(--grey-extra-light-color) !important;
}
.social_media_link .btn.btn-social {
  margin-right: 0.125rem;
  width: 3.063rem;
  height: 3.063rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: 0.3s;
  border: none;
  padding: 0;
  font-size: 1.125rem;
  margin-bottom: 0.313rem;
  border-radius: 0rem !important;
}
.social_media_link .btn-social {
  background: var(--main-text-color);
  color: var(--white-color);
}
.social_media_link .btn-social:hover {
  background: var(--white-color);
  color: var(--main-text-color);
}
@media screen and (max-width: 767px) {
  .sub-footer-sec {
    text-align: center;
  }
  .mob-column-reverse {
    flex-direction: column-reverse;
  }
  .footer-nav {
    padding-top: 1.5rem !important;
  }
  .victoria-footer-logo {
    margin-bottom: 2rem !important;
    margin: auto;
  }
  .victoria-footer-logo img {
    margin: 0 auto;
    max-height: 7.813rem;
  }
}
/* End Footer section CSS */

/* Hero section start */
.hero-section {
  position: relative;
}
.hero-section .hero-banner-inner {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-banner-inner .hero-banner-picture {
  width: 100%;
  min-height: 13.188rem;
  display: block;
  position: relative;
}
.hero-section .hero-banner-inner .hero-banner-picture img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100% !important;
  width: 100%;
  position: absolute;
}

.hero-section .hero-banner-heading {
  padding-bottom: 2.5rem;
}
.hero-section .hero-banner-heading .hero-title {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 2.25rem !important;
  line-height: 2.75rem !important;
  letter-spacing: 0.031rem;
}
.hero-section .hero-banner-heading .hero-desc {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  letter-spacing: 0.031rem;
}

@media only screen and (min-width: 768px) {
  .hero-section .hero-banner-inner {
    min-height: 36.25rem;
  }
  .hero-section .hero-banner-inner .hero-banner-picture {
    min-height: 0;
    height: 100%;
    position: static;
  }
  .hero-section .hero-banner-inner .hero-banner-picture img {
    -o-object-position: 50% top;
    object-position: 50% top;
  }
  .hero-banner-picture::after {
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 39.27%,
      rgba(0, 0, 0, 0.3) 63.25%,
      rgba(0, 0, 0, 0.6) 81.68%,
      rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
  }
  .hero-section .hero-banner-heading {
    position: relative;
  }
  .hero-section .hero-banner-heading {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-section .hero-banner-heading .hero-title {
    font-size: 3.75rem !important;
    line-height: 4.5rem !important;
    color: var(--white-color);
  }
  .hero-section .hero-banner-heading .hero-desc {
    color: var(--white-color);
    padding-bottom: 0rem;
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
}
/* Hero section end */
/* Stats sectiom start */
.plp-stats-section {
  padding-top: 1rem;
  padding-bottom: 0rem;
}
.plp-stats-section .stats-col .stats-slide-wrapper {
  padding: 0 0 1rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.plp-stats-section .stats-col .stats-wrapper {
  background-color: var(--white-color);
  padding: 0;
  align-content: baseline;
  align-items: center;
  display: flex;
  flex: 0 0 19rem;
  scroll-snap-align: start;
  cursor: pointer;
}
.plp-stats-section .stats-col .stats-wrapper:hover .stats-inner {
  background-color: var(--primary-color);
}
.plp-stats-section .stats-col .stats-inner {
  background-color: var(--white-color);
  height: 100%;
  align-content: baseline;
  align-items: center;
  display: flex;
  flex: 0 0 19rem;
  scroll-snap-align: start;
  padding: 0.5rem 1rem 0.5rem 0rem;
}
.plp-stats-section .stats-col .stats-card-front {
  align-items: center;
  display: flex;
  width: 100%;
}
.plp-stats-section .stats-col .stats-card-image-block {
  flex: 0 0 5rem;
  margin: auto;
  padding: 1rem;
  height: 5rem;
  width: 5rem;
}
.plp-stats-section .stats-col .stats-card-image-block img {
  height: 3rem;
  width: 3rem;
}
.plp-stats-section .stats-col .stats-card-title-block {
  color: var(--aubergine-color);
  width: 100%;
}
.plp-stats-section .stats-col .stats-card-title-block .stats-head {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--grey-dark-color);
}

.plp-stats-section
  .stats-col
  .stats-card-title-block
  .stats-card-mobile-description {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--aubergine-color);
}
.plp-stats-section .stats-col .stats-card-back {
  display: none;
}
.plp-stats-section .stats-col .stats-card-description {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--aubergine-color);
}

@media only screen and (min-width: 992px) {
  .plp-stats-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .plp-stats-section .stats-col .stats-slide-wrapper {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
    flex-wrap: wrap;
    overflow-x: inherit;
    padding-bottom: 0rem;
  }
  .plp-stats-section .stats-col .stats-wrapper.hover-flip {
    background-color: var(--transparent) !important;
    perspective: 500px;
    transition: all 0.5s;
    align-items: baseline;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .plp-stats-section .stats-col .stats-inner {
    transform-style: preserve-3d;
    transition: transform 0.5s;
    align-items: baseline;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 0.5rem 0.75rem;
  }
  .plp-stats-section .stats-col .stats-wrapper:hover .stats-inner {
    background-color: var(--white-color);
    transform: rotateY(180deg);
  }
  .plp-stats-section .stats-col .stats-card-image-block {
    flex: 0 0 100%;
    padding: 0;
    height: 4.25rem;
    width: 4.25rem;
  }
  .plp-stats-section .stats-col .stats-card-image-block img {
    height: 4.25rem;
    width: 4.25rem;
  }
  .plp-stats-section .stats-col .stats-card-title-block .stats-head {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.25rem !important;
  }
  .plp-stats-section
    .stats-col
    .stats-card-title-block
    .stats-card-mobile-description {
    display: none;
  }
  .plp-stats-section .stats-col .stats-card-front {
    backface-visibility: hidden;
    display: block;
  }
  .plp-stats-section .stats-col .stats-card-back {
    background: var(--primary-color);
    display: block;
    padding: 1.25rem 0.75rem;
    position: absolute;
    text-align: left;
    align-content: start;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
  }
  .plp-stats-section .stats-col .stats-card-description {
    font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
    color: var(--aubergine-color);
    padding: 0.5rem 0rem;
  }
}
/* Stats sectiom End */
/* Discover Section */
.plp-discover-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.plp-discover-section .discover-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.plp-discover-section .discover-col .discover-image-wrapper {
  width: 100%;
}
.plp-discover-section .discover-col .discover-content-wrapper {
  width: 100%;
  background-color: var(--black-color);
  padding: 1rem 1rem 0rem;
}
.plp-discover-section .discover-col .discover-head {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  letter-spacing: 0.031rem;
  color: var(--white-color);
}
.plp-discover-section .discover-col .discover-sub-head {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
  letter-spacing: 0.5%;
  color: var(--white-color);
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.plp-discover-section .discover-col .discover-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--white-color);
}

.plp-discover-section .discover-col .discover-para ul {
  list-style-type: disc;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.plp-discover-section .discover-col .discover-para ul li {
  padding-bottom: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .plp-discover-section .discover-col .discover-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .plp-discover-section .discover-col .discover-image-wrapper picture {
    position: relative;
    display: block;
    width: 100%;
    min-height: 28.125rem;
    max-height: 28.125rem;
  }
  .plp-discover-section .discover-col .discover-image-wrapper picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
}

@media only screen and (min-width: 1200px) {
  .plp-discover-section .discover-col {
    flex-wrap: nowrap;
    min-height: 32.5rem;
  }
  .plp-discover-section .discover-col .discover-image-wrapper {
    width: 66.66%;
    height: 100%;
  }
  .plp-discover-section .discover-col .discover-image-wrapper picture {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
  }
  .plp-discover-section .discover-col .discover-image-wrapper picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
  .plp-discover-section .discover-col .discover-content-wrapper {
    width: 33.33%;
    padding: 1.5rem;
    min-height: 32.5rem;
  }
  .plp-discover-section .discover-col .discover-head {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  .plp-discover-section .discover-col .discover-sub-head {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .plp-discover-section .discover-col .discover-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}
/* Discover Section End */
/* Why choose Section */
.plp-why-choose-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.plp-why-choose-section .why-choose-card-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  align-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}
.plp-why-choose-section .why-choose-card-col .why-choose-card {
  width: 100%;
  background-color: var(--grey-extra-light-color);
  padding: 1rem 1rem 1.5rem;
  border: none;
  border-radius: 0rem;
}
.plp-why-choose-section.section-w-bg .why-choose-card-col .why-choose-card {
  background-color: var(--white-color);
}

.plp-why-choose-section
  .why-choose-card-col
  .why-choose-card
  .why-choose-card-head {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--main-text-color);
}

.plp-why-choose-section
  .why-choose-card-col
  .why-choose-card
  .why-choose-card-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--grey-dark-color);
}

@media only screen and (min-width: 768px) {
  .plp-why-choose-section .why-choose-card-col {
    flex-direction: row;
    align-items: stretch;
  }
  .plp-why-choose-section .why-choose-card-col .why-choose-card {
    width: calc(50% - 0.5rem);
  }
  .plp-why-choose-section
    .why-choose-card-col
    .why-choose-card
    .why-choose-card-head {
    font-size: 1.25rem !important;
  }
  .plp-why-choose-section
    .why-choose-card-col
    .why-choose-card
    .why-choose-card-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  .plp-why-choose-section .why-choose-card-col {
    gap: 2rem;
  }
  .plp-why-choose-section .why-choose-card-col .why-choose-card {
    width: calc(25% - 1.5rem);
    padding: 1.5rem 1.5rem 2rem;
  }
  .plp-why-choose-section
    .why-choose-card-col
    .why-choose-card
    .why-choose-card-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}
/* Why choose Section End */

/* modal starts */

#modal_dialog,
#connect-with-us-modal,
#course_dialog {
  border: none;
  padding: 0;
  margin: auto;
  width: 100%;
  max-width: 50rem;
  border-radius: 0rem;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.25);
  background: #ffffff;
  animation: fadeIn 0.25s ease-in-out;
  max-height: calc(100vh - 2rem);
}

/* Modal content wrapper */
#modal_dialog .modal-content,
#connect-with-us-modal .modal-content {
  position: relative;
  padding: 1.5rem;
}

/* Title and text */
.modal-title {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 2.25rem !important;
  line-height: 2.75rem !important;
  border-bottom: 0.063rem solid #b7b7b7;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  padding-right: 2.125rem;
}

/* Close button */

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 2rem;
  cursor: pointer;
  color: var(--black-color);
  transition: color 0.2s;
  width: 2.625rem;
  height: 2.625rem;
}

/* close css and outline css*/
.modal-close:hover {
  color: var(--black-85-color);
  background: none !important;
  outline: none !important;
}

.modal-close:focus-visible {
  color: var(--black-85-color);
  background: none !important;
  outline: none !important;
}

.modal-close:hover:focus-visible {
  color: var(--black-color);
}

.register-form-section {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.register-form-section input:focus-visible {
  outline: none !important;
}

.register-form-section input:hover:focus-visible {
  outline: none !important;
}

/* Backdrop (native popover supports ::backdrop) */
#modal_dialog::backdrop,
#connect-with-us-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(0.188rem);
  backdrop-filter: blur(0.188rem);
}

.success-msg-wrap {
  margin-bottom: 0;
  margin-top: 1rem;
}

.success-msg-wrap .msg-box {
  border-radius: 0.25rem;
  background: rgba(73, 132, 6, 0.16);
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: solid 0.063rem var(--positive-color);
  gap: 0.625rem !important;
  max-width: 100%;
}

.fail_msg,
.success_msg {
  width: calc(100% - 4.188rem);
}

.msg-box .msg-title-head {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
}

.msg-box p {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.875rem !important;
  line-height: 1.5rem !important;
}

/* Modal Action Links */
.modal-action-links {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  clear: both;
}

.download-prospectus-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  color: #262626;
  text-decoration: none;
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: color 0.2s;
}

.download-prospectus-link:hover {
  color: #003366;
  text-decoration: underline;
}

.download-prospectus-link svg {
  flex-shrink: 0;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-0.938rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (min-width: 768px) {
  #modal_dialog .modal-content,
  #connect-with-us-modal .modal-content {
    position: relative;
    padding: 2rem;
  }
  .modal-close {
    top: 2rem;
    right: 2rem;
  }
}

/* modal ends */

/* Student Life Section */
.plp-student-life-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.plp-student-life-section .student-life-card-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  align-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.plp-student-life-section .student-life-card-col .student-life-card {
  width: 100%;
  background-color: var(--grey-extra-light-color);
  padding: 0rem;
  border: none;
  border-radius: 0rem;
}

.plp-student-life-section .student-life-card-col .student-life-card .card-body {
  padding: 1rem 1rem 1.5rem;
  background-color: var(--grey-extra-light-color);
}

.plp-student-life-section.section-w-bg
  .student-life-card-col
  .student-life-card
  .card-body {
  background-color: var(--white-color);
}

.plp-student-life-section .student-life-card-col .student-life-card picture {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
}

.plp-student-life-section
  .student-life-card-col
  .student-life-card
  picture
  img {
  position: absolute;
  aspect-ratio: 2/1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.plp-student-life-section
  .student-life-card-col
  .student-life-card
  .student-life-card-head {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--main-text-color);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.plp-student-life-section
  .student-life-card-col
  .student-life-card
  .student-life-card-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--grey-dark-color);
}

@media only screen and (min-width: 768px) {
  .plp-student-life-section .student-life-card-col {
    flex-direction: row;
    align-items: stretch;
  }
  .plp-student-life-section .student-life-card-col .student-life-card {
    width: calc(50% - 0.5rem);
  }
  .plp-student-life-section
    .student-life-card-col
    .student-life-card
    .student-life-card-head {
    font-size: 1.25rem !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .plp-student-life-section
    .student-life-card-col
    .student-life-card
    .student-life-card-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  .plp-student-life-section .student-life-card-col {
    gap: 2rem;
  }
  .plp-student-life-section .student-life-card-col .student-life-card {
    width: calc(33.33% - 1.375rem);
  }
  .plp-student-life-section .student-life-card-col .student-life-card picture {
    aspect-ratio: 7/4;
  }
  .plp-student-life-section
    .student-life-card-col
    .student-life-card
    picture
    img {
    aspect-ratio: 7/4;
  }
  .plp-student-life-section
    .student-life-card-col
    .student-life-card
    .card-body {
    padding: 1.5rem 1.5rem 2rem;
  }
  .plp-student-life-section
    .student-life-card-col
    .student-life-card
    .student-life-card-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}
/* Student Life Section End */

/* Inside Hero section start */

.inside-hero-section .inside-hero-banner-inner {
  position: relative;
  overflow: hidden;
}
.inside-hero-section .inside-hero-banner-inner .inside-hero-banner-picture {
  width: 100%;
  min-height: 13.188rem;
  display: block;
  position: relative;
}
.inside-hero-section .inside-hero-banner-inner .inside-hero-banner-picture img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100% !important;
  width: 100%;
  position: absolute;
}

.inside-hero-section .inside-hero-banner-heading {
  padding-bottom: 2rem;
  background-color: var(--black-color);
}
.inside-hero-section .inside-hero-banner-heading .inside-hero-title {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 2.25rem !important;
  line-height: 2.75rem !important;
  letter-spacing: 0.031rem;
  color: var(--white-color);
}
.inside-hero-section .inside-hero-banner-heading .inside-hero-desc {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  padding-top: 2rem;
  padding-bottom: 0rem;
  letter-spacing: 0.031rem;
  color: var(--white-color);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inside-hero-section .inside-hero-banner-inner .inside-hero-banner-picture {
    min-height: 20rem;
  }
}

@media only screen and (min-width: 768px) {
  .inside-hero-section .inside-hero-banner-inner,
  .inside-hero-section .inside-hero-banner-inner .container-xxl,
  .inside-hero-section .inside-hero-banner-inner .row {
    min-height: 36.25rem;
  }
  .inside-hero-section .inside-hero-banner-inner .inside-hero-banner-picture {
    min-height: 0;
    height: 100%;
    position: static;
  }
  .inside-hero-section
    .inside-hero-banner-inner
    .inside-hero-banner-picture
    img {
    -o-object-position: right top;
    object-position: right top;
    max-width: 55%;
    right: 0;
  }
  .inside-hero-banner-picture::after {
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 39.27%,
      rgba(0, 0, 0, 0.3) 63.25%,
      rgba(0, 0, 0, 0.6) 81.68%,
      rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
  }
  .inside-hero-section .inside-hero-banner-heading {
    position: relative;
    min-height: 36.25rem;
    padding-right: 2.5rem;
  }
  .inside-hero-section .inside-hero-banner-heading {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .inside-hero-section .inside-hero-banner-heading .inside-hero-title {
    font-size: 3.75rem !important;
    line-height: 4.5rem !important;
  }
  .inside-hero-section .inside-hero-banner-heading .inside-hero-desc {
    padding-top: 0.5rem;
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
}
/* Hero section end */

/* Footer style */
.footer-links-wrapper {
  display: flex;
  gap: 2rem; /* 32px */
}

section.site-footer {
  padding: 2.5rem 0; /* 40px */
}

.footer-main-box h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
  font-weight: 500;
  font-family: "program", Arial, Helvetica, sans-serif !important;
  margin-bottom: 1.625rem; /* 26px */
  color: #262626;
}

.footer-menu-links li {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  font-weight: 400 !important;
  margin-bottom: 0.5rem; /* 8px */
}

.footer-menu-links li a {
  color: #0c71ac;
  text-decoration: unset;
}

.footer-main-box {
  width: calc(25% - 1.5rem); /* already rem */
}

/* Mobile (phones) */
@media (max-width: 47.9375rem) {
  /* 767px */
  .footer-links-wrapper {
    display: block;
  }

  .footer-main-box {
    width: 100%;
  }

  section.site-footer .container-xxl {
    padding: 0;
  }

  section.site-footer {
    padding: 0;
    overflow-x: hidden;
  }
}

.plp-main-header .navbar {
  position: relative;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.07);
  z-index: 2;
}
.plp-main-header .navbar-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  height: 6.25rem;
}

.plp-main-header .nav-header-btn {
  /* display: inline-block; */
  display: none;
}

.plp-main-header .sub-header-logo {
  width: auto !important;
  padding: 1.587rem 0;
}
.plp-main-header .sub-header-logo img {
  max-height: 3.125rem;
}
.plp-main-header .header-campus-name {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  padding-left: 2rem;
}

.plp-main-header .navbar.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 3.75rem;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  animation: slideDown 0.2s ease-in-out;
  -webkit-animation: slideDown 0.2s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.plp-main-header .navbar.sticky-top .sub-header-logo img {
  height: 2.125rem;
}

.plp-main-header .navbar.sticky-top .nav-header-btn {
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  body {
    padding-top: 3.75rem;
  }
  .plp-main-header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.75rem;
    z-index: 999;
  }
  .plp-main-header .navbar-brand {
    padding: 1rem 0;
    height: 3.75rem;
  }
  .plp-main-header .sub-header-logo {
    padding: 0;
  }
  .plp-main-header .sub-header-logo img {
    height: 1.875rem;
  }
  .plp-main-header .nav-header-btn {
    display: inline-block;
  }
  .plp-main-header .nav-header-btn .default-btn.default-btn-secondary {
    padding: 0.625rem 1.25rem !important;
    min-height: 2.75rem;
    font-size: 1.125rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .program-type-banner-img-wrapper {
    display: flex;
    justify-content: space-evenly;
    gap: 0;
    align-items: stretch;
    width: 50%;
    margin-top: 5px;
  }
  .program-type-banner-heading {
    width: 45%;
  }
  .program-type-banner-section .program-type-banner-col {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0;
    flex-wrap: unset;
  }
}

/* LP CSS */

.hero-section .container {
  position: relative;
  /* z-index: 1; */
  padding: 48px 0;
}
.row.hero-section-inner {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
}
.hero-section-inner {
  display: flex;
  flex-wrap: wrap;
  /* min-height: 744px; */
  align-items: start;
  position: relative;
  z-index: 9;
}
.herosection-left {
  width: 42%;
  padding-right: 48px;
  color: #fff;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.herosection-left h1 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #fff;
  letter-spacing: 0.3px;
}
.herosection-left p {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  font-weight: 500;
  margin: 0;
  padding: 8px 0;
  color: #fff;
  letter-spacing: 0.12px;
  font-family: "program", Arial, Helvetica, sans-serif !important;
}
.herosection-right {
  width: 58%;
  color: #fff;
}
.herosection-left ul {
  list-style: disc;
  padding-left: 15px;
}
.herosection-left li {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 992px) {
  .hero-banner-media-responsive {
    display: none;
  }
  .hero-section {
    background-image: url(http://s48589.p938.sites.pressdns.com/wp-content/uploads/2026/01/2e6e9fcf58f9b0ea4c9733b17f481fcc68fb9ad1-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100%;
    background-position-x: 80%;
    padding: 48px 0;
  }

  .read-more-btn {
    display: none;
  }
}

.course-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.course-dialog__wrapper {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 650px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

/* LEFT */
.course-dialog__left {
  background: #1f174e;
  color: #fff;
  padding: 24px;
}

.course-media img {
  width: 100%;
  border-radius: 0;
  margin-bottom: 20px;
  height: 256px;
  object-fit: cover;
}

.course-meta p {
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
}

.course-desc p {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* RIGHT */
.course-dialog__right {
  /* padding: 2rem; */
  position: relative;
}

.course-dialog__close {
  position: absolute;
  top: 2.5rem;
  right: 2.25rem;
  font-size: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.course-title {
  /* margin-bottom: 1.25rem; */
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.course-meta p {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
}
div#thank-you h2 {
  padding-left: 0;
}
.course-meta {
  margin-bottom: 1rem;
}
div#course_desc {
  font-size: 1.125rem;
}
.pb-40 {
  padding-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .pb-40 {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .plp-main-header .sub-header-logo img {
    height: 1.1rem;
    max-width: 8.75rem;
  }
  #plp-btn,
  .plp-head-btn {
    font-size: 1.15rem !important;
  }
}

.phone-wrapper .phone-prefix {
  border: 1px solid #8d9695;
  border-right: 0 !important;
  padding: 0 15px;
  line-height: 35px;
  font-size: 14px;
  height: 2.5rem;
  white-space: nowrap;
  background-color: #fff;
  color: #000;
}
.phone-wrapper {
  display: flex;
  /* align-items: center; */
  margin-bottom: 0px;
}

.LP-inline-sideform {
  background-color: #fff;
  padding: 0;
}

h2.lp-banner-form-head {
  font-size: 3rem;
  line-height: 3.125rem;
  font-weight: 500;
  color: #262626;
  font-family: "program", Arial, Helvetica, sans-serif !important;
  padding: 1rem 0rem !important;
  border-bottom: 1px solid #e3e6e5;
}

.LP-inline-sideform #lpLeadForm {
  padding: 1rem 2rem;
}
.lp-form-success-wrapper {
  padding: 2rem;
}

#course_dialog .success_msg {
  background-color: #49840629;
  border: 1px solid #498406;
  margin-bottom: 2.25rem;
}

#course_dialog .msg-title-head {
  color: #262626;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  padding: 1rem;
}

a.down-prospectus-link-text {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #1e1248;
  text-decoration: unset;
  margin-bottom: 2rem;
}

span.ty-popup-icon {
  margin-right: 13px;
}

span.ty-popup-icon img {
  height: 20px;
  width: 20px;
}
.success_msg svg {
  margin-top: 15px;
  margin-left: 16px;
}
.thankyou-popup-message {
  padding: 2rem;
}

/* program card lp mobile */

/* =========================
   MOBILE FULLSCREEN POPUP
========================= */
@media (max-width: 768px) {
  dialog.course-dialog[open],
  dialog.course-dialog:popover-open {
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .course-dialog__wrapper {
    flex-direction: column;
    /* height: 100vh; */
    overflow: hidden;
    display: block;
  }

  /* Hide left section (image + description) */
  .course-dialog__left {
    background-color: #fff;
  }

  /* Right section becomes full screen */
  .course-dialog__right {
    width: 100%;
    padding: 1rem;
    overflow-y: auto;
    position: relative;
  }

  /* Close button top-right */
  .course-dialog__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
  }
  .course-title-lp {
    display: none;
  }
  #LPFormsection .container-xxl {
    padding: 0;
  }

  h2.lp-banner-form-head {
    padding: 1rem;
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  .LP-inline-sideform #lpLeadForm {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0;
  }
}
/* Hero banner btn */
.hero-banner-inner {
  z-index: 1;
}
.hero-section {
  position: relative;
}

#course_dialog {
  max-width: 78rem;
}

/* External links CSS */
img.external-link-icon {
  height: 13px;
  width: 13px;
  margin-left: 3px;
  transform: translateY(-3px);
}

.external-link-icon.white-external {
  filter: invert(1);
}
.grey-exlink {
  filter: grayscale(0) invert(0.5);
}

.footer-nav .external-link-icon {
  height: 12px;
  width: 12px;
  transform: translateY(-2px);
}
li.externallink-icon svg {
  height: 16px;
  margin-left: 6px;
  transform: translateY(-3px);
}
.LP-inline-sideform .external-link-icon {
  transform: translateY(-2px);
  margin-left: 5px;
}
#course_dialog .external-link-icon {
  transform: translateY(-2px);
  margin-left: 5px;
}
.modal-action-links .external-link-icon {
  transform: translateY(0px);
  margin-left: 0;
}
@media (min-width: 1024px) {
  /* overlay */
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000033; /* 20% black */
    z-index: 1;
  }
}

/* mobileprogram cards */
.modal-read-more {
  margin-top: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 24px;
  font-weight: 400;
  color: #1e1248;
}
.lp-modal-header {
  padding: 29px 16px;
  border-bottom: 1px solid #dbdbd3;
}
.lp-modal-header .course-title {
  margin-bottom: 0;
}

.lp-modal-header .course-dialog__close {
  font-size: 42px;
  top: 33px;
}

.lp-modal-header {
  display: none;
}
#courseReadMore img {
  height: 7px;
  width: auto;
}
.lp-form-success-wrapper .thankyou-message-box .success_msg {
  background-color: #49840629;
  border: 1px solid #498406;
  margin-bottom: 36px;
}

h6.msg-title-head {
  color: #262626;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 16px;
}
.lpprogram-card-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}
.course-title-lp {
  padding: 33px 32px;
  border-bottom: 1px solid #b7b7b7;
}

div#courseFormWrapper {
  padding: 16px 32px 0 33px;
}

@media (max-width: 991px) {
  .hero-section .container {
    max-width: 100%;
    padding: 0;
  }
  .hero-section-inner {
    min-height: inherit;
  }
  .hero-section .herosection-left {
    background: #000;
    padding: 16px 16px 24px 16px;
    width: 100%;
    gap: 24px;
  }

  .hero-section .herosection-left > * {
    z-index: 1;
  }
  .herosection-right {
    width: 100%;
  }
  .herosection-left li {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-section .herosection-left h1 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
  .herosection-left p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: 0.1px;
  }
  .course-media {
    display: none;
  }

  .course-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
/* Mobile only */
@media (max-width: 768px) {
  .course-meta,
  .course-desc-wrapper {
    color: #262626;
  }

  .lp-modal-header {
    display: block;
  }

  .course-desc {
    height: 58px;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  /* Form spacing */
  .course-form-wrapper {
    padding: 0 !important;
  }
}

/* PLP accordian start */

.plp-faqs-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.plp-faqs-section .plp-accordian-parent-wrapper > .accordion .accordion-item {
  border-top: 0.8px solid var(--black-color);
  border-bottom: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-item:last-child {
  border-bottom: 0.8px solid var(--black-color);
}

.plp-faqs-section .plp-accordian-parent-wrapper .plp-accordian-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--grey-dark-color);
  padding-bottom: 0.5rem;
}

.plp-faqs-section .plp-accordian-parent-wrapper .plp-accordian-number-list {
  padding-top: 0.5rem;
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.plp-faqs-section .plp-accordian-parent-wrapper .plp-accordian-number-list li {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--grey-dark-color);
  padding-bottom: 0.5rem;
}

.plp-faqs-section .plp-accordian-parent-wrapper > .accordion .accordion-button {
  color: var(--black-color);
  background-color: var(--white-color);
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  padding: 1rem 0;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button::after {
  content: "\e145";
  width: 2rem;
  height: 2rem;
  font-family: "Material Symbols Outlined";
  background: none;
  font-size: 2rem !important;
  line-height: 2rem !important;
  text-decoration: none;
  font-weight: 400;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button:not(.collapsed) {
  color: var(--primary-dark-color);
  background-color: var(--white-color);
  box-shadow: none;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button:not(.collapsed)::after {
  content: "\e15b";
  transform: none;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button:focus {
  box-shadow: none;
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button:hover {
  color: var(--primary-dark-color);
}

.plp-faqs-section
  .plp-accordian-parent-wrapper
  > .accordion
  .accordion-button:hover
  span {
  text-decoration: underline;
}

.plp-faqs-section .plp-accordian-parent-wrapper > .accordion .accordion-body {
  padding: 1rem 0.5rem 2rem 0.5rem;
}

@media only screen and (min-width: 992px) {
  .plp-faqs-section .plp-accordian-parent-wrapper > .accordion {
    padding-top: 0rem;
  }
  .plp-faqs-section .plp-accordian-parent-wrapper .plp-accordian-para {
    font-size: 1.25rem !important;
  }
  .plp-faqs-section
    .plp-accordian-parent-wrapper
    .plp-accordian-number-list
    li {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .plp-faqs-section
    .plp-accordian-parent-wrapper
    > .accordion
    .accordion-button {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
}

/* PLP accordian end */

/* PLP details section start */

.plp-programme-details-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.plp-programme-details-section .plp-details-wrapper {
  background-color: var(--grey-extra-light-color);
  padding: 1.5rem;
  margin-top: 1rem;
}
.plp-programme-details-section.section-w-bg .plp-details-wrapper {
  background-color: var(--white-color);
}
.plp-programme-details-section .plp-details-wrapper .plp-details-head {
  font-family: "program", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  color: var(--main-text-color);
}
.plp-programme-details-section .plp-details-wrapper .plp-details-para {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--grey-dark-color);
}
.plp-programme-details-section .plp-details-wrapper .plp-details-list {
  list-style-type: disc;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
}
.plp-programme-details-section .plp-details-wrapper li {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--grey-dark-color);
  padding-bottom: 0.5rem;
}

@media only screen and (min-width: 992px) {
  .plp-programme-details-section .plp-details-wrapper .plp-details-head {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  .plp-programme-details-section .plp-details-wrapper .plp-details-para {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .plp-programme-details-section .plp-details-wrapper li {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
}

/* PLP details section end */

/* PLP programme band section start */
.plp-programme-band-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: var(--primary-color);
}
.plp-programme-band-section .plp-programme-band-col {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.plp-programme-band-section .plp-programme-band-col .plp-programme-band-card {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.plp-programme-band-section .plp-programme-band-col .plp-programme-band-img {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plp-programme-band-section
  .plp-programme-band-col
  .plp-programme-band-img
  .material-symbols-outlined {
  color: var(--black-color);
  font-size: 2.75rem;
  line-height: 2.75rem;
}
.plp-programme-band-section
  .plp-programme-band-col
  .plp-programme-band-img
  img {
  color: var(--black-color);
  width: 2.5rem;
  height: 2.5rem;
}
.plp-programme-band-section .plp-programme-band-col .plp-programme-band-head {
  display: block;
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--black-color);
  padding-bottom: 0.5rem;
}
.plp-programme-band-section .plp-programme-band-col .plp-programme-band-text {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--black-color);
}
.plp-programme-band-section .plp-programme-band-col .plp-programme-band-text a {
  color: var(--aubergine-color);
  text-decoration: underline;
}
.plp-programme-band-section
  .plp-programme-band-col
  .plp-programme-band-text
  a:hover {
  /* color: var(--white-color); */
  text-decoration: unset;
}

@media only screen and (min-width: 992px) {
  .plp-programme-band-section .plp-programme-band-col {
    flex-wrap: nowrap;
    gap: 0rem;
    align-items: flex-start;
  }
  .plp-programme-band-section .plp-programme-band-col .plp-programme-band-card {
    width: 25%;
    text-align: center;
    display: block;
  }
  .plp-programme-band-section .plp-programme-band-col .plp-programme-band-img {
    display: block;
    margin: 0 auto;
  }
  .plp-programme-band-section .plp-programme-band-col .plp-programme-band-head {
    font-size: 1.25rem !important;
  }
  .plp-programme-band-section .plp-programme-band-col .plp-programme-band-text {
    font-size: 1.125rem !important;
  }
}

/* PLP programme band section end */

.register-form {
    padding: 1rem 2rem;
}

.consent-text.mt-0 {
    display: flex !important;
    flex-wrap: wrap;
    gap: 36px !important;
    padding: 16px 0 !important;
    color: #0b0c0c !important;
    border: 0;
}
@media (max-width: 768px) {
    #PLPFormsection .container-xxl {
        padding: 0;
    }
}
/* Card backgrounds */
.card-bg-white {
    background: #ffffff !important;
}

.card-bg-grey {
    background: var(--grey-light-color) !important;
}
#PLPFormsection .hero-section-inner{
    align-items: center;
    z-index: 1 !important;
}
.plp-details-para ul {
    list-style: disc;
    list-style-position: inside;
}

.plp-programme-details-section .section-heading-para ul {
    list-style: disc;
    list-style-position: inside;
}
#PLPFormsection .hero-section-inner {
  align-items: center;
  z-index: 1 !important;
}

/* Navigationbar */
[id] {
  scroll-margin-top: 80px;
}

.details-navbar-section {
  background-color: var(--black-color);
  min-height: 5rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.details-navbar-section .navbar {
  min-height: 5rem;
  padding: 0;
}

.details-navbar-section .navbar .nav-item {
  height: 5rem;
}

.details-navbar-section .navbar .nav-item .nav-link {
  padding: 1.625rem 1rem;
  color: var(--white-color);
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  border: none;
  outline: none;
}

.details-navbar-section .navbar .nav-item .nav-link.active,
.details-navbar-section .navbar .nav-item .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--main-text-color);
}

.details-navbar-section .show-menuitem-selected {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--white-color);
  display: inline-block;
  padding-left: 1rem;
  width: calc(100% - 54px);
  height: 80px;
  display: flex;
  align-items: center;
}

.details-navbar-section .navbar-toggler {
  border: none;
  border-radius: 0;
  height: 80px;
}

.details-navbar-section .navbar-toggler:focus {
  box-shadow: none;
}

.details-navbar-section .navbar-toggler.collapsed .navbar-toggler-icon {
  transform: rotate(0deg);
}

.details-navbar-section .navbar-toggler .navbar-toggler-icon {
  position: relative;
  background-image: none;
  transform: rotate(180deg);
}

.details-navbar-section .navbar-toggler .navbar-toggler-icon::after {
  content: "keyboard_arrow_down";
  width: 2rem;
  height: 2rem;
  font-family: "Material Symbols Outlined";
  background: none;
  font-size: 2rem !important;
  line-height: 2rem !important;
  text-decoration: none;
  font-weight: 400;
  color: var(--white-color);
}

.details-navbar-section .details-cta-wrapper-col {
  border-bottom: 0.031rem solid var(--white-color);
}

.details-navbar-section .details-cta-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.details-navbar-section .details-cta-wrapper .details-cta-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  padding: 0.75rem 0.375rem 0.625rem;
  row-gap: 0.125rem;
}

.details-navbar-section .details-cta-wrapper .details-cta-item img {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

.details-navbar-section .details-cta-wrapper .details-cta-item .details-cta-text {
  display: block;
  width: 100%;
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  line-height: 1.25rem !important;
  color: var(--white-color);
  text-decoration: none;
}

.details-navbar-section .details-cta-wrapper .details-cta-item.details-cta-item-apply {
  background-color: var(--melon-color);
}

.details-navbar-section .details-cta-wrapper .details-cta-item.details-cta-item-apply .details-cta-text {
  color: var(--black-color);
}

.details-navbar-section .details-cta-wrapper .details-cta-item:hover .details-cta-text,
.details-navbar-section .details-cta-wrapper .details-cta-item:focus .details-cta-text {
  text-decoration: underline;
}
@media only screen and (min-width: 576px) {
  .details-navbar-section .show-menuitem-selected {
    padding-left: 2.125rem;
  }
}


@media only screen and (min-width: 576px) {
  .details-navbar-section .show-menuitem-selected {
    padding-left: 2.125rem;
  }
}

@media only screen and (min-width: 992px) {
  .details-navbar-section .show-menuitem-selected {
    display: none;
  }

  .details-navbar-section .navbar .nav-item .nav-link {
    padding: 1.625rem 1rem;
    font-size: 0.875rem !important;
    line-height: 1.75rem !important;
    white-space: nowrap;
  }

  .details-navbar-section .details-cta-wrapper-col {
    display: none;
  }

}

@media only screen and (min-width: 1200px) {
  .details-navbar-section .navbar .nav-item .nav-link {
    font-size: 1rem !important;
    line-height: 1.75rem !important;
  }
}

@media only screen and (min-width: 1400px) {
  .details-navbar-section .navbar .nav-item .nav-link {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
}


.plp-subnavigation .nav-header-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plp-subnavigation.sticky .nav-header-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.details-navbar-section .show-menuitem-selected {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
  color: var(--white-color);
  display: flex;
  padding-left: 1rem;
}

@media only screen and (min-width: 992px) {
  .details-navbar-section .show-menuitem-selected {
    display: none;
  }
}

#menu-marketing-plp-subnavigation .nav-item .nav-link:hover {
  background-color: var(--primary-color);
  color: #1E1248;
}

.pl-enquire-btn,
.plp-head-btn {
  font-size: 1.25rem !important;
  line-height: 1.5rem !important;
  padding: 0.75rem 2rem !important;
  min-height: 3.5rem !important;
  white-space: nowrap;
}

@media (max-width: 992px) {

  .plp-subnavigation.sticky-top,
  .plp-subnavigation .navbar.sticky-top,
  .plp-subnavigation .navbar.is-sticky {
    /* top: 76px !important; */
  }
}

/* Added Mobile Sticky Offset Fix */
@media (max-width: 991px) {
  .details-navbar-section {
    top: 76px !important;
  }
}

/* stickyafter hero */
.plp-subnavigation {
  position: relative;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plp-subnavigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  /* body.single-marketing-plp {
    padding-top: 156px;
  } */

  #plp-btn, .plp-head-btn {
    padding: 0.5rem 1.5rem !important;
  }

  .thankyou-message-box .cta-sumbit {
    margin-top: 0;
  }

  .lp-form-success-wrapper .lp-banner-form-head {
    padding-top: 0 !important;
  }

  .register-form {
    padding: 1rem 2rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .details-navbar-section .navbar .nav-item .nav-link{
    font-size: 0.825rem;
  }
  .details-navbar-section .navbar .nav-item .nav-link {
    padding: 1.625rem 0.65rem
  }
  .default-btn.pl-enquire-btn{
    padding: 0.5rem 1.5rem !important;
    font-size: 1.25rem !important;
  }
}

@media (min-width: 1400px) and (max-width: 1499px) {
  .details-navbar-section .navbar .nav-item .nav-link {
    padding: 1.625rem 1rem;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
   .default-btn.pl-enquire-btn{
    padding: 0.5rem 1.5rem !important;
  }
}
@media (max-width: 990px) {
  body.single-marketing-plp {
    padding-top: 9rem ;
  }
}
@media screen and (min-width: 978px) and (max-width: 991px) {
  body.single-marketing-plp {
    padding-top: 0rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* .plp-subnavigation .container-xxl{
      padding-left: 1rem !important;
      padding-right: 1rem !important;
  } */
  .hero-section .herosection-left{
      padding-left: 2rem !important;
      padding-right: 2rem !important;
  }
  .register-form {
      padding: 1rem 2rem !important;
  }
}
@media only screen and (max-width: 991px) {
  .details-navbar-section .container-xxl {
        padding-left: 0;
        padding-right: 0;
    }

}
@media only screen and (min-width: 991px) and (max-width: 992px) {
    #PLPFormsection .hero-banner-media-responsive {
      display: none;
  }
}
 
@media screen and (min-width: 576px) and (max-width: 767px) {
  .details-navbar-section .navbar-toggler {
     padding-right: 2.125rem;
  }  

  .details-navbar-section .show-menuitem-selected{
    padding-left: 2.125rem;
    width: calc(100% - 76px);
  }

  .details-navbar-section .navbar .nav-item .nav-link{
    padding: 1.625rem 2.125rem;
  }
  .hero-section .herosection-left {
      padding-left: 2rem;
      padding-right: 2rem;
  }
  .cta-sumbit {
      margin-top: 0;
      text-align: justify;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .details-navbar-section .navbar-toggler {
     padding-right: 2.5rem;
  }  

  .details-navbar-section .show-menuitem-selected{
    padding-left: 2.5rem;
    width: calc(100% - 82px);
  }

  .details-navbar-section .navbar .nav-item .nav-link{
    padding: 1.625rem 2.5rem;
  }
}
@media (max-width: 991px) {
    #PLPFormsection .container-xxl {
        padding: 0;
    }
}

.hero-banner-media-responsive img {
    width: 100%;
}
.pl-enquire-btn {
    font-size: 1.25rem !important;
    line-height: 1.5rem !important;
    padding: 0.75rem 2rem !important;
}

/* City Dropdown Integration Start */

.city-autocomplete {
  position: relative;
}
.city-autocomplete::after {
  content: var(--after-content, "");
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  pointer-events: none;
  border: solid #262626;
  border-width: 0 0.125rem 0.125rem 0;
  display: inline-block;
  padding: 0.188rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
}

.city-dropdown {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  max-height: 20rem;
  overflow-y: scroll;
  background-color: var(--white-color);
  border: 1px solid var(--grey-light-on-light-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.city-section-title,
.city-item {
  font-family: "source-sans-pro", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  color: var(--main-text-color);
  padding: 0.5rem;
}

.city-item {
  font-weight: 400 !important;
  cursor: pointer;
}

.city-item:hover, .city-item.active {
  background-color: var(--primary-color);
  color: var(--aubergine-color);
}

.city-dropdown::-webkit-scrollbar {
  width: 0.375rem;
}

.city-dropdown::-webkit-scrollbar-track {
  background: var(--grey-extra-light-color);
}

.city-dropdown::-webkit-scrollbar-thumb {
  background: var(--grey-light-on-light-color);
  border-radius: 0.375rem;
  width: 0.375rem;
}

.city-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--grey-dark-color);
}

/* City Dropdown Integration End */