@import url("./bootstrap.css");
@import url("./fonts.css");
@import url("./plugins.css");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* common styles */
.primaryBtn {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #003a63;
  color: #003a63;
  padding: 8px 10px;
  text-align: center;
  position: relative;
  display: inline-block;
  transition: all 400ms ease-in-out;
}

.innerPadding {
  padding: 75px 0;
}

.learnBtn {
  display: block;
  color: #003a63;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
  margin-top: auto;
  align-self: flex-start;
}

/* Header Styles */
/* .Header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 40px 0px;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 100%;
}

.headerHolder {
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex: 1;
}

.logo img {
  max-width: 300px;
  height: auto;
}

.right {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.mainMenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
} */
/* Header Styles */
.Header {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 40px 0;
  padding-inline-start: 40px;
}

.Header .container {
  width: 100%;
  /* padding: 0 20px; */
  margin: 0 auto;
  max-width: 100%;
}

.headerHolder {
  position: relative;
}

.nav {
  width: 100%;
}

.logo img {
  max-width: 300px;
  height: auto;
}

.right {
  gap: 20px;
}

/* Main Menu */
.mainMenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.mainMenu a {
  color: #fff;
  text-decoration: none;
}

/* White Button */
.whitetBtn {
  border-color: #fff;
  color: #fff;
}

.whitetBtn:hover {
  color: #003a63;
  background-color: #fff;
}

/* Search Window */
.searchWindow {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 23, 56, 0.9);
  color: #fff;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

a {
  text-decoration: none;
}

/* Buttons */
/* .primaryBtn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
} */

.whitetBtn {
  /* background: #fff;
  color: #333;
  border: 2px solid #333; */
  border-color: #fff;
  color: #fff;
}

.whitetBtn:hover {
  color: #003a63;
  background-color: #fff;
}

/* Search Icon */
.search {
  display: none;
  width: 20px;
  height: 20px;
  background-image: url(../Assets/icons/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  /* margin-left: 20px; */
}

/* Search Window */
.searchWindow {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 23, 56, 0.9);
  color: #fff;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.searchWindow.opened {
  opacity: 1;
  visibility: visible;
}

.searchWindow .content {
  position: relative;
  width: 100%;
}

.searchWindow .close {
  position: fixed;
  top: 30px;
  inset-inline-end: 60px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-image: url(../Assets/icons/close\ icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1101;
}

.searchInputWrap {
  max-width: 600px;

  margin: 0 auto;
  position: relative;
}

.searchInputWrap input {
  font-family: inherit;

  width: 100%;
  /* padding: 15px; */
  padding: 0.05em 0;
  font-size: 65px;
  line-height: 1;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  outline: none;
  color: #fff;
  opacity: 0;
  transform: scale3d(0.8, 0.8, 0.8);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.searchWindow.opened .searchInputWrap input {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.searchInputWrap input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Burger Menu */
.burgerMenuToggle {
  display: flex;
  align-items: center;
  text-decoration: none;

  cursor: pointer;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;

  color: #fff;
  font-weight: 700;
  line-height: 24px;
  font-size: 13px;
}

.burgerMenuToggle:hover {
  color: #fff;
}

.burgerMenu {
  font-weight: 300;
  position: fixed;
  top: 0;
  inset-inline-end: -480px;
  bottom: -56px;
  width: 350px;
  padding: 90px 0 76px;
  color: #fff;
  background: #013961;
  font-size: 14px;
  line-height: 20px;
  z-index: 1200;
  transition: right 0.3s ease;
}

.burgerMenu.open {
  inset-inline-end: 0;
}

.burgerMenu .content {
  position: relative;
}

.burgerMenu .close {
  position: absolute;
  top: -40px;
  inset-inline-end: 25px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url(../Assets/icons/close\ icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.burgerMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.burgerMenu ul li {
  /* margin-bottom: 15px; */
  padding-inline-start: 18px;
}

.burgerMenu ul li a {
  color: #fff;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #1c4e72;
  transition: color 0.3s ease;
}

.burgerMenu ul li a:hover {
  color: #fff;
}

.burgerMenu ul li.hasSubmenu:hover {
  background-color: #002c4c;
}

/* Megamenu Background */
.megamenuBG {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.megamenuBG.show {
  display: block;
}

/* overlay menu changes header */
body.burger-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 900;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.burger-menu-open .burgerMenu,
body.burger-menu-open .hiddenMenu {
  z-index: 1201;
}

body.burger-menu-open .stiky-panel-section,
body.burger-menu-open .contact-panel {
  z-index: 800;
}

/* Search Results */
.ui-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-width: 600px;
  margin: 0px auto;
  list-style: none;
  text-align: start;
  padding-inline-start: 0px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: none;
  z-index: 1101;
}

.ui-menu.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.ui-menu-item {
  cursor: pointer;
  text-decoration: none;
  padding: 5px 0;
  font-size: 17px;
  color: #fff;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.ui-menu-item a {
  color: #fff;
  font-size: 17px;
}

.ui-menu.show .ui-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.ui-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.ui-menu-item:nth-child(2) {
  transition-delay: 0.15s;
}

.ui-menu-item:nth-child(3) {
  transition-delay: 0.2s;
}

.ui-menu-item:nth-child(4) {
  transition-delay: 0.25s;
}

.ui-menu-item:nth-child(5) {
  transition-delay: 0.3s;
}

.ui-view-all-results {
  transition-delay: 0.35s;
}

.ui-menu-item:hover {
  /* background: #f5f5f5; */
}

.validatorHolder {
  margin-top: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.validatorHolder.show {
  opacity: 1;
}

/* Submenu Styles */
.burgerMenu .hasSubmenu {
  position: relative;
}

.burgerMenu .hasSubmenu .subMenuToggle {
  position: absolute;
  inset-inline-end: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Common bullet style for burger menu dropdown items */
.burgerMenu .ddSecondLevel ul li a::before,
.burgerMenu .ddThirdLevel ul li a::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  position: absolute;
  top: 14px;
  inset-inline-start: 5px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
}

/* Show bullet when hovered */
.burgerMenu .ddSecondLevel ul li a:hover::before,
.burgerMenu .ddThirdLevel ul li a:hover::before {
  opacity: 1;
}

.ddSecondLevel {
  position: absolute;
  max-height: inherit;
  background: #002c4b;
  inset-inline-end: 350px;
  width: 300px;
  top: 0;
  padding: 15px;
  transition: all 0.2s ease;
  display: none;
  z-index: 1200;
  pointer-events: auto;
}

.burgerMenu .hasSubmenu:hover > .ddSecondLevel,
.burgerMenu .hasSubmenu > .ddSecondLevel:hover {
  display: block;
}

.ddSecondLevel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ddSecondLevel ul li {
  position: relative;
  margin-bottom: 0px;
}

.ddSecondLevel ul li a {
  color: #fff;
  opacity: 0.8;
  padding: 8px 0;
  font-size: 14px;
  display: block;
  border-bottom: unset;
  text-decoration: none;
}

.ddThirdLevel {
  /* display: none; */
  padding-inline-start: 15px;
}

.ddSecondLevel .hasSubmenu:hover > .ddThirdLevel {
  display: block;
}

.ddThirdLevel ul li {
  margin-bottom: 0px;
  /* margin-left: 5px; */
}

.ddThirdLevel ul li a {
  border-bottom: none;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.8;
  text-decoration: none;
  padding: 5px 0;

  transition: all 0.5s ease;
}

.ddThirdLevel ul li a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .mainMenu {
    display: none;
  }

  .burgerMenuToggle {
    margin-inline-start: 15px;
  }

  .Header .logo img {
    max-width: 150px;
  }

  .burgerMenu {
    width: 100%;
    inset-inline-end: -100%;
  }

  /* Allow clicks on mobile - JavaScript will handle the toggle */
  .burgerMenu .hasSubmenu > a {
    pointer-events: auto;
    cursor: pointer;
  }

  /* Hide submenus by default on mobile - JavaScript will control visibility via slideToggle */
  .burgerMenu .hasSubmenu > .ddSecondLevel {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
  }

  .ddThirdLevel {
    position: static;
    width: 100%;
    display: block;
  }

  .burgerMenu .close {
    top: -60px;
  }
}

/* Additional mobile styles for screens < 1024px */
@media (max-width: 1023px) {
  /* Hide submenus by default on mobile - JavaScript will control visibility via slideToggle */
  .burgerMenu .hasSubmenu > .ddSecondLevel {
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
  }

  /* Disable hover behavior on mobile - use JavaScript click handlers instead */
  .burgerMenu .hasSubmenu:hover > .ddSecondLevel,
  .burgerMenu .hasSubmenu > .ddSecondLevel:hover {
    display: none;
  }

  /* Allow clicks on mobile - JavaScript will handle the toggle */
  .burgerMenu .hasSubmenu > a {
    pointer-events: auto;
    cursor: pointer;
  }
}

.mainBanner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  color: #fff;
}

.mainBanner .parallaxWrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-image: url(../Assets/bannerLayer.png);
  background-repeat: repeat;
  z-index: 100;
}

.mainBanner .parallaxWrapper .bannerContent .container {
  width: 100%;
}

.parallaxWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* .parallaxBanner {
  background-image: url("../Assets/Home\ Banner.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  animation: panning 15s linear infinite;
  transform-origin: center;
  -webkit-animation: panning 15s linear infinite 0s;
  background-position: center center;
  transform-origin: center center;
  padding-bottom: 43%;
}

@keyframes panning {
  0% {
    background-position: center center;
  }
  50% {
    background-position: center top;
  }
  100% {
    background-position: center center;
  }
} */
/* container (keep relative & size) */
.parallaxBanner {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full viewport height */
  overflow: hidden;
}

.parallaxBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../Assets/Home Banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}

/* Keyframes: slow zoom + small vertical pan + tiny rotation for organic feel */
@keyframes zoomPan {
  0% {
    transform: scale(1) translateY(0px) rotate(0deg);
  }

  30% {
    transform: scale(1.05) translateY(-18px) rotate(-0.08deg);
  }

  60% {
    transform: scale(1.07) translateY(8px) rotate(0.06deg);
  }

  100% {
    transform: scale(1) translateY(0px) rotate(0deg);
  }
}

/* Apply animation */
.parallaxBanner::before {
  animation: zoomPan 14s ease-in-out infinite;
}

/* Mobile tuning: reduce intensity on small screens (less scale, slower) */
/* @media (max-width: 768px) {
  .parallaxBanner {

  }

  .parallaxBanner::before {
    animation: zoomPanMobile 18s ease-in-out infinite;
  }

  @keyframes zoomPanMobile {
    0% { transform: scale(1) translateY(0px) rotate(0deg); }
    50% { transform: scale(1.03) translateY(-10px) rotate(0deg); }
    100% { transform: scale(1) translateY(0px) rotate(0deg); }
  }
} */

.bannerContent {
  position: absolute;
  top: 35%;
  inset-inline-start: 50%;
  /* transform: translate(-50%, -50%); */
  transform: translateX(-50%);
  text-align: center;
  z-index: 100;
}

.mainTitle {
  color: #fff;
  font-size: 50px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 300;
}

.mainTitle span {
  font-weight: 700;
}

.listingHolder {
  list-style: none;
  justify-content: center;
  flex-wrap: unset;
  gap: 50px;
  padding: 0;
  margin: 0;
}

.listingHolder li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.listingHolder li h5 {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  width: 160px;
  margin-inline: auto;
}

.listingHolder li h5 span {
  font-weight: 300;
  display: block;
  font-size: 18px;
}

.circleIcon {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  border: 2px solid #fff;
  transition: all 400ms ease-in-out;
}

.circleIcon:hover {
  background-color: #003a63;
  border-color: #003a63;
}

.circleIcon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

h5 {
  font-size: 1.2rem;
  margin-top: 15px;
}

h5 .light {
  display: block;
  font-weight: 300;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .listingHolder {
    flex-direction: column;
    gap: 30px;
  }
}

.innovation-integrity {
  margin-top: 15px;
}

.innovation-integrity .container {
  height: 200px;
  max-height: 200px;
  padding: 0;
  margin: 0 auto;
}

.innovation-integrity p {
  font-weight: 700;
  font-size: 45px;

  line-height: 50px;
  color: #dfdfdf;
  margin-inline-start: 150px;
}

.exploreBanner.bgBanner {
  background-image: url("../Assets/5AboutBannerImage.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  padding: 70px 0;
  z-index: 800;
}

.bgBanner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: transparent url(../Assets/bannerLayer.png) repeat top left;
}

.exploreBanner.bgBanner .column1 {
  text-align: start;
  z-index: 100;
}

.exploreBanner.bgBanner .column1 .mainTitle {
  margin-bottom: 15px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
}

.exploreBanner.bgBanner .column1 .mainTitle span {
  font-weight: 700;
}

.exploreBanner.bgBanner .column1 p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.exploreBanner.bgBanner .column2 {
  z-index: 100;
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat {
  text-align: center;
  color: #fff;
}

.exploreBanner.bgBanner .container {
  opacity: 1;
  transform: translate(0);
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat .statNumber {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat {
  position: relative;
  top: -18px;
  text-align: center;
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat .count {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat .statUnit {
  font-size: 20px;
  /* color: #a5a4a8; */
  color: white;
  opacity: 0.95;
  font-weight: 400;
  position: relative;
  top: 45px;
}

.exploreBanner.bgBanner .NumberCounter .listingHolder li .stat .statText {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  max-width: 200px;
  margin: 0 auto;
  color: #fff;
}

.exploreBanner .btn-mobile {
  display: none;
}

.newsletter {
  background-color: #efefef;
  padding: 50px 0px;
}

.newsletter .newletterHeading {
  position: relative;
}

.newsletter .newletterHeading .boldTitle {
  font-weight: 700;
  font-size: 22px;
  color: #071c3c;
}

.newsletter .newsletter-col {
  position: relative;
  /* padding: 25px 0px; */
  justify-content: flex-end;
  display: flex;
}

.newsletter .newsletter-col .subscribeForm .newsletterSubscribe {
  display: flex;
  gap: 2px;
  align-items: center;
}

.newsletter .newsletter-col .subscribeForm .newsletterSubscribe .newsTitle {
  color: #003a63;
  font-size: 22px;
  font-weight: 700;
  margin-inline-end: 14px;
}

.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  input[type="text"],
.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  input[type="email"] {
  height: 40px;
  padding-inline-start: 20px;
  background-color: transparent;
  appearance: none;
  width: 300px;
  font-size: 14px;
  font-family: Raleway, sans-serif;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(137, 137, 137);
  border-image: initial;
  border-radius: 0px;
}

.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  a,
.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  .newsletterForm
  button {
  height: 40px;
  line-height: 38px;
  border: 2px solid #071c3c;
  text-transform: uppercase;
  text-align: center;
  padding: 0 25px;
  color: #071c3c;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  transition: all 400ms ease-in-out;
}

.newsletterFormFooter button {
  height: 40px;
  line-height: 38px;
  border: 2px solid #fff !important;
  text-transform: uppercase;
  text-align: center;
  padding: 0 25px;
  color: #fff !important;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  transition: all 400ms ease-in-out;
  background-color: transparent !important;
}

.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  a:hover,
.newsletter
  .newsletter-col
  .subscribeForm
  .newsletterSubscribe
  .newsletterContainer
  .newsletterForm
  button:hover {
  background-color: #071c3c;
  color: #fff;
}

.newsletterFormFooter button:hover {
  background-color: #fff !important;
  color: #071c3c !important;
}

.blogSlider {
  padding: 75px 0px;
}

.blogSlider .mainTitle {
  color: #003a63;
  margin-bottom: 40px;

  text-transform: uppercase;
}

.blogSlider .mainTitle h2 {
  font-size: 40px;
  font-weight: 300;
}

.blogSlider .mainTitle h2 span {
  font-weight: 700;
}

.blogSlider .listingImage {
  margin-bottom: 20px;
  overflow: hidden;
}

.blogSlider .listingItem:hover .listingImage img {
  transform: scale(1.1);
}

.blogSlider .listingImage img {
  transition: transform 0.5s ease;
}

.blogSlider .listingTitle {
  margin-bottom: 12px;
}

.blogSlider .listingTitle a {
  color: #003a63;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  display: block;
  transition: color 0.3s ease;
}

.blogSlider .listingTitle a:hover {
  color: #909091;
}

.blogSlider .listingDate {
  color: #545456;
}

/* .blogSlider .listingTitle a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
} */

.blogSlider .viewAllBottom {
  margin-top: 45px;
}

.blogSlider .viewAllBottom a {
  padding: 0 25px;
  height: 40px;
  line-height: 38px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.blogSlider .viewAllBottom a:hover {
  color: #fff;
  background-color: #003a63;
}

/* ==========================
   Owl Carousel Dots Styling
========================== */
.blogSlider .owl-dots {
  position: absolute;
  top: -75px;
  inset-inline-end: 0;
  text-align: end;
  display: flex;
  gap: 10px;
}

.blogSlider .owl-dot {
  height: 16px;
  width: 16px;

  border: 1px solid #3d3d3f !important;
  border-radius: 100px;
  display: inline-block;
  background: transparent;
  transition: all 0.3s ease;
}

.blogSlider .owl-dot.active {
  background: #071c3c;
  border-color: #071c3c;
}

/* ==========================
 Footer Styles
========================== */
.footer {
  background-color: #003a63;
  padding: 45px 0;
  position: relative;
  /* overflow: hidden; */
}

.footer .slideFooter {
  text-align: center;
  color: #fff;
  width: 52px;
  height: 40px;
  display: block;
  background: #003a63;
  line-height: 40px;
  font-size: 35px;
  font-weight: normal;
  position: absolute;
  top: -20px;
  inset-inline-start: 50%;
  margin-inline-start: -26px;
  z-index: 800;

  transition: all 400ms ease-in-out;
}

.footer .slideFooter img {
  width: 24px;
  height: 24px;
}

.footer .topFooter .footer-top-wrapper .newsTitle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer .topFooter .footer-top-wrapper {
  margin-bottom: 35px;
}

.footer .topFooter .footer-top-wrapper .newsTitle h3 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.footer .topFooter .footer-top-wrapper .newsTitle .newsletterSubscribe {
  display: flex;
  align-items: center;
}

.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  input[type="text"],
.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  input[type="email"] {
  height: 40px;
  line-height: 39px;
  background-color: transparent;
  appearance: none;
  margin-inline-end: 2px;
  font-size: 14px;
  font-family: Raleway, sans-serif;
  border: 1px solid #8093a0;
  width: 257px;
  padding-inline-start: 20px;
  color: #868686;
  border-radius: 0px;
}

.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  input[type="text"]:focus,
.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}

.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  a,
.footer
  .topFooter
  .footer-top-wrapper
  .newsTitle
  .newsletterSubscribe
  .newsletterContainer
  button {
  height: 40px;
  line-height: 38px;
  border: 2px solid #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 25px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  transition: all 400ms ease-in-out;
}

.footer .topFooter .footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop: Show social media in topFooter, hide in bottomFooter */
.footer .topFooter .footer-social-media {
  display: block;
}

.footer .bottomFooter .footer-social-media {
  display: none;
}

.footer .footer-social-media .socialMedia {
  display: flex;
  align-items: center;
}

.footer .footer-social-media .socialMedia ul {
  display: flex;
  list-style: none;
}

.footer .footer-social-media .socialMedia h3 {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 10px;
}

.footer .footer-social-media .socialMedia ul li a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transition: all 400ms ease-in-out;
}

.footer .footer-social-media .socialMedia ul li a.fa-facebook::before {
  content: "\f39e";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  display: inline-block;
}

.footer .footer-social-media .socialMedia ul li a.fa-twitter::before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  display: inline-block;
}

.footer .footer-social-media .socialMedia ul li a.fa-linkedin::before {
  content: "\f0e1";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  display: inline-block;
}

.footer .footer-social-media .socialMedia ul li a.fa-instagram::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  display: inline-block;
}

.footer .footer-social-media .socialMedia ul li a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.footer .middleFooter .simpleList {
  padding-left: unset;
  margin-bottom: 20px;
}

.footer .middleFooter .simpleList .simpleListTitle {
  margin-bottom: 17px;
  margin-top: 0px;
}

.footer .middleFooter .simpleList .simpleListTitle a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.footer .middleFooter .simpleList li {
  color: #fff;
  list-style: none;
}

.footer .middleFooter .simpleList li a:hover {
  text-decoration: underline;
}

.footer .middleFooter .simpleList li a {
  color: #fff;
  font-size: 14px;
}

/* Arrow transition */
.footer .slideFooter img {
  transition: transform 0.4s ease;
}

/* Arrow styling & smooth rotation */
.footer .slideFooter img {
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.footer .slideFooter.active img {
  transform: rotate(180deg);
}

/* Smooth expand/collapse for the middleFooter */
.footer .middleFooter {
  max-height: 1000px;
  overflow: hidden;
  transition:
    max-height 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.6s ease;
  opacity: 1;
  margin-bottom: 24px;
}

.footer .middleFooter.collapsed {
  max-height: 0;
  opacity: 0;
}

.footer .ddThirdLevel > ul {
  padding-left: unset;
}

/* .footer .ddThirdLevel ul li a {
  font-size: 12px;
  color: #fff;
  opacity: unset;
} */
.footer .middleFooter .simpleList .ddThirdLevel ul li a {
  font-size: 12px;
  color: #fff;
  opacity: 1;
}

.footer .bottomFooter .copyrightsBlock {
  margin-top: 20px;
}

.footer .bottomFooter .logo {
  display: none;
  margin-bottom: 35px;
}

.footer .bottomFooter .logo .logoText {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.footer .bottomFooter .logo .logoText img {
  margin-inline-start: 10px;
}

.footer .bottomFooter .copyrightsBlock {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
}

.footer .bottomFooter .copyrightsBlock p {
  font-size: 14px;
  color: #fff;
}

.footer .bottomFooter .copyrightsBlock p a {
  color: #fff;
  text-decoration: underline;
}

.footer .bottomFooter .copyrightsBlock p a:hover {
  text-decoration: none;
}

/* ==========================
Left Side Icons
========================== */
.leftSideIcons {
  position: fixed;
  white-space: nowrap;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1111;
}

.leftSideIcons .socialList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leftSideIcons .socialList li .leftSideEntity {
  position: relative;
  width: 45px;
  height: 45px;
  overflow: hidden;
  background-color: rgba(173, 173, 173, 0.5);
  margin-bottom: 2px;
  text-align: start;
  cursor: pointer;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: 8px center;
  transition: all 0.4s ease-in-out;
}

.leftSideIcons .socialList li .leftSideEntity a {
  height: 45px;
  position: absolute;
  width: 100%;
  z-index: 100;
}

.leftSideIcons .socialList li .leftSideEntity .HiddenInfo {
  position: absolute;
  inset-inline-start: 60px;
  top: 0;
  height: 45px;
  color: #fff;
  line-height: 45px;
  text-transform: capitalize;
  font-size: 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease-in-out;
}

/* Hover effect */
.leftSideIcons .socialList li .leftSideEntity:hover {
  width: 245px;
  background-color: #064571;
}

/* Reveal text smoothly */
.leftSideIcons .socialList li .leftSideEntity:hover .HiddenInfo {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================
Stiky Panel Section
========================== */
.stiky-panel-section {
  position: fixed;
  bottom: 54px;
  inset-inline-end: 15px;
  z-index: 2000;
}

.stiky-panel-section .primaryBtn {
  color: #fff;
  background-color: #003a63;
  border-color: #003a63;
  inset-inline-end: 15px;
}

.contact-panel {
  position: fixed;
  inset-inline-end: 15px;
  bottom: -30px;
  z-index: 2000;
  background-color: #f4f4f4;
  overflow: hidden;
  width: 390px;
  transition: bottom 0.6s ease;
}

.contact-panel.active {
  bottom: 0;
}

/* When contact panel is active */
.contact-panel.active ~ .primaryBtn {
  bottom: 86%;
}

/* Header always visible */
.contact-header {
  background-color: #f4f4f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  padding-bottom: 0px;
  margin-bottom: 20px;
  cursor: pointer;
}

.contact-header h3 {
  color: #003a63;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
}

.contact-header button {
  background: none;
  border: none;
  font-size: 35px;
  font-weight: 500;
  cursor: pointer;
  color: #00325a;
  line-height: 0px;
}

/* Collapsible body */
.contact-body {
  padding: 0px 24px 17px 24px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease;
}

.contact-panel.active .contact-body {
  max-height: 670px;
  opacity: 1;
}

.contact-body .call-text,
.contact-body .info-text {
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;

  line-height: 24px;
}

.contact-body .call-text {
  margin-bottom: 20px;
}

.contact-body .call-text strong {
  font-weight: 700;
}

.contact-body .info-text {
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 1px solid #898989;
  height: 40px;
  padding-inline-start: 20px;
  background-color: transparent;
  font-size: 14px;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 1px solid #898989;
  height: 40px;
  padding-inline-start: 20px;
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  color: #545456;
  outline: none;
  /* prevent the browser’s default yellow or blue outline */
}

.contact-form textarea {
  color: #545456;
  height: 168px;
  font-weight: 300;
  padding: 10px 18px;
  font-size: 14px;
  line-height: 25px;
  background: none;
}

/* Make sure the border color stays the same when focused */
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #898989;
  outline: none !important;
}

.submitHolder {
  margin-inline-start: auto;
}

.submitHolder .primaryBtn {
  color: #fff;
  font-family: Raleway, sans-serif;
  background-color: #003a63;
  border-color: #003a63;
  padding: 0 20px;
  min-width: 105px;
  height: 40px;
  line-height: 40px;
  transition: all 400ms ease-in-out;
}

.submitHolder .primaryBtn:hover {
  color: rgb(0, 58, 99);
  background-color: rgb(255, 255, 255);
  border: 1px solid #909091;
}

/* Red dot for Job Title */
.input-with-dot {
  position: relative;
}

.input-with-dot .dot {
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-size: 18px;
}

/* Form Validation Error Styles */
.inputParent {
  position: relative;
}

.inputParent input.error,
.inputParent textarea.error {
  border: 1px solid red !important;
}

.error-message {
  display: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  color: red;
  position: absolute;
  inset-inline-end: 0;
  top: -18px;
}

/* ==========================
Main Banner Page Section
========================== */

.mainBannerPage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mainBannerPage .aboutBanner::before {
  background: transparent url(../Assets/bannerLayer.png) repeat top left;
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mainBannerPage .aboutBanner {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainBannerPage .aboutBanner .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  text-align: center;
}

/* .mainBannerPage .aboutBanner {
  position: relative;
  width: 100%;
  min-height: 600px; 
  max-height: 600px; 
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
} */

.mainBannerPage .aboutBanner .container {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mainBannerPage .aboutBanner .bannerText .breadCrumbMainContainer {
  margin-bottom: 35px;
}

.mainBannerPage .aboutBanner .bannerText .breadCrumbMainContainer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.mainBannerPage .aboutBanner .bannerText .breadCrumbMainContainer ul li a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

/* Hover effect ONLY for normal links */
.mainBannerPage
  .aboutBanner
  .bannerText
  .breadCrumbMainContainer
  ul
  li
  a:not(.last):hover {
  opacity: 0.7;
}

.mainBannerPage .aboutBanner .bannerText .breadCrumbMainContainer ul li .last {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  opacity: 1;
}

/* .breadCrumbMainContainer ul li a:hover {
  opacity: 1;
} */

.breadCrumbMainContainer ul li:not(:last-child)::after {
  content: "/";
  color: #fff;
  inset-inline-start: 0;
  padding-inline: 4px;
  /* font-weight: bold; */
  font-size: 13px;
  position: relative;
  /* top: -1px; */
}

.mainBannerPage .aboutBanner .bannerText .bannerParag {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  max-width: 790px;
  margin-inline: auto;
  margin-bottom: 44px;
}

.mainBannerPage .aboutBanner .bannerText .bannerMenu .leftNav {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.mainBannerPage .aboutBanner .bannerText .bannerMenu .leftNav li a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  position: relative;
  display: inline-block;

  transition: all 400ms ease-in-out;
}

.mainBannerPage .aboutBanner .bannerText .bannerMenu .leftNav li a:hover {
  background-color: #fff;
  color: #003a63;
}

.mainBannerPage .aboutBanner .bannerText .bannerMenu .leftNav li a.active {
  background-color: #fff;
  color: #003a63;
}

.bannerMenu select.mobileNav {
  display: none;
  width: 250px;
  max-width: 80%;
  padding: 10px;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  appearance: none;
  outline: none;
}

/* ==========================
Create Block Section
========================== */

.createBlock .mainTitle {
  color: #00355b;
  font-size: 40px;
  margin-bottom: 50px;
}

.createBlock .aboutUsText .summary {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 22px;
  color: #00355b;
  line-height: 32px;
}

.createBlock .aboutUsText .mainText {
  font-size: 16px;
  color: #515151;
  line-height: 28px;
  margin-bottom: 40px;
}

.createBlock .aboutUsText .NumberCounter .listingItemLI {
  color: #003a63;
}

.createBlock .aboutUsText .NumberCounter .listingItemLI .stat .statNumber {
  font-size: 80px;
  font-weight: bold;
  line-height: 35px;
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.createBlock .aboutUsText .NumberCounter .listingHolder {
  gap: 0px;
}

.createBlock .aboutUsText .NumberCounter .listingItemLI .stat .statUnit {
  color: #a5a4a8;
  font-size: 20px;
  font-weight: 400;
  vertical-align: bottom;
  position: relative;
  top: 18px;
}

.createBlock .aboutUsText .NumberCounter .listingItemLI .stat .statText {
  max-width: 190px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

/* ==========================
Services Banner Section
========================== */
.servicesBanner {
  padding: 70px 0px;
  position: relative;
}

.servicesBanner.parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.servicesBanner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: transparent url(../Assets/bannerLayer.png) repeat top left;
  z-index: 1;
}

/* .servicesBanner .container,
.servicesBanner .row,
.servicesBanner .mainTitle,
.servicesBanner p,
.servicesBanner ul {
  position: relative;
  z-index: 2; 
} */
.servicesBanner > * {
  position: relative;
  z-index: 2;
}

.servicesBanner .mainTitle {
  margin-bottom: 30px;
  font-size: 40px;
}

.servicesBanner p {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;

  margin-bottom: 45px;
}

.servicesBanner ul {
  list-style: none;
  padding-inline-start: 0px;
}

.servicesBanner ul li {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.servicesBanner .listingIcon li a {
  position: relative;
  display: block;
  cursor: none;
  width: 112px;
  height: 112px;
  transition: all 400ms ease-in-out;
  margin: 0 auto 30px;
}

.servicesBanner .listingIcon .listingHolder {
  gap: 0px;
  margin: unset;
}

.servicesBanner .listingIcon .listingHolder .listingItemLI {
  margin-bottom: 30px;
}

.servicesBanner .listingIcon li a img {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.servicesBanner .listingIcon li h5 {
  width: unset;
  margin: unset;
  text-align: center;
}

.servicesBanner .listingIcon li h5 span {
  font-weight: 300;
  display: block;
  font-size: 18px;
  text-transform: none;
}

/* ==========================
Our Affliations Section
========================== */
.afflicationBlock .listingHolder {
  justify-content: flex-start;
  gap: 0px;
}

.afflicationBlock .listingHolder .listingItemLI {
  /* padding-inline: 0px; */
}

.afflicationBlock .listingHolder .listingItemLI .listingItem {
  border: 1px solid #ebebeb;
  width: 100%;
}

.afflicationBlock .listingHolder .listingItemLI .listingItem .listingImage {
  overflow: hidden;
  margin-bottom: 0;
}

.afflicationBlock .listingHolder .listingItemLI .listingItem .listingImage a {
  display: block;
  padding: 40px 0;
}

.afflicationBlock
  .listingHolder
  .listingItemLI
  .listingItem
  .listingImage
  a
  img {
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* ==========================
Team Section
========================== */

.ourTeam .teamBlock .ListingTeamHolder ul {
  justify-content: flex-start;

  flex-wrap: wrap;
  gap: 0px;
}

.ourTeam .teamBlock .ListingTeamHolder ul .listingItemLI {
  /* padding-inline: 0px; */
  text-align: start;
  align-items: start;
}

.ourTeam .teamBlock .ListingTeamHolder ul .listingItemLI .listingItem {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingImage {
  width: 100%;
  margin-bottom: 25px;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingImage
  a {
  display: block;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingImage
  img {
  width: 100%;
  object-fit: cover;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos {
  /* position: relative; */
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingTitle {
  color: #003a63;
  margin-bottom: 10px;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingTitle
  a {
  font-size: 22px;
  color: #003a63;
  font-weight: bold;
  display: block;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingDate {
  color: #54595c;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .ffaLink {
  display: block;
  text-transform: uppercase;
  color: #003a63;
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #003a63;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingDescription {
  display: flex;
  justify-content: space-between;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingDescription
  .listingLink {
  display: block;
  width: 30px;
  height: 30px;
}

.ourTeam
  .teamBlock
  .ListingTeamHolder
  ul
  .listingItemLI
  .listingItem
  .listingInfos
  .listingDescription
  .listingLink
  img {
  width: 30px;
  height: 30px;
}

/* ==========================
 Fancy Box Team  Member Section
========================== */
/* Fancybox Popup Customization */
.teamMemberPopup .fancybox__content {
  background: #fff;
  max-width: 800px;
  border-radius: 4px;

  transition: all 400ms ease-in-out;
  position: relative;

  margin: 25px auto;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: start;
  white-space: normal;
  outline: none;
  font-size: 16px;

  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  height: auto;
  padding: 30px;
}

/* Move close button inside top-right */
/* .fancybox__content .fancybox__button--close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #003a63;
  background: transparent;
  border: none;
  font-size: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

 .fancybox__content .fancybox__button--close:hover {
  opacity: 1;
} */

/* Make the content flow naturally */
.teamMemberPopup .fancybox__slide {
  overflow: auto;
  /* Allows Fancybox overlay to scroll, not body */
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Prevent body scroll when popup is open */
.teamMemberPopup .fancybox__container {
  overscroll-behavior: contain;
}

.teamMemberPopup .membersModal img {
  width: 100%;
  height: auto;
}

.teamMemberPopup .membersModal .listingTitle {
  font-size: 23px;
  color: #003a63;
  margin-bottom: 10px;
  font-weight: bold;
}

.teamMemberPopup .membersModal .listingDate {
  color: #003a63;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
}

.teamMemberPopup .membersModal .listingDescription {
  font-size: 14px;
  line-height: 25px;
  color: #545456;
}

.teamMemberPopup .membersModal .ffaEntity {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #003a63;
}

.teamMemberPopup .membersModal .ffaEntity a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #003a63;
}

/* .teamMemberPopup .is-close{
  top: 0px !important;
 } */

.teamMemberPopup .fancybox__content .carousel__button.is-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
}

/* Hide the default SVG icon completely */
.teamMemberPopup .fancybox__content .carousel__button.is-close svg {
  display: none !important;
}

.teamMemberPopup .fancybox__content .carousel__button.is-close::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(../Assets/icons/sprite.png);
  background-position: -186px -113px;
  background-repeat: no-repeat;
  background-size: auto;
}

.teamMemberPopup .fancybox__content .carousel__button.is-close:hover::before {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

/* ==========================
 Form Section
========================== */
.form-section {
  padding: 70px 0;
  background-color: #fff !important;
}

.form-section .sectionTitle {
  color: #003a63;
  font-size: 40px;
  margin-bottom: 30px;
}

.form-section .job-description {
  font-weight: 400;
  font-size: 20px;
  color: #545456;
  margin-bottom: 25px;
}

.form-section .title-info {
  color: #003a63;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-section .personal-info {
  margin-bottom: 15px;
}

.form-section .inputEntity {
  margin-bottom: 25px;
  position: relative;
}

.form-section .inputEntity .errorMessage {
  position: absolute;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  background: none;
  padding: 0;
  top: 0;
  inset-inline-end: 0;
  display: none;
}

.form-section .inputEntity .form-label {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  line-height: 19px;
}

.form-section .inputEntity .form-control,
.form-section .inputEntity .form-select {
  color: #000;
  font-size: 16px;
  border: 1px solid #898989;
  height: 40px;
  padding: 0 20px;
  padding-inline-end: 10px;
  line-height: 40px;
  width: 100%;
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  font-weight: 300;
}

.form-section .inputEntity textarea.form-control {
  padding: 5px 20px;
  line-height: 25px;
  -webkit-appearance: none;
  height: 168px;
  margin: 0;
  resize: none;
}

.form-section .inputEntity .select-dob-group {
  gap: 30px;
}

/* Focus effect (for both input and select) */
.form-section .inputEntity .form-control:focus,
.form-section .inputEntity .form-select:focus {
  border-width: 2px;
  border-color: #000;
  box-shadow: none;
  outline: none;
}

.form-section .inputEntity .form-select .dk-selected {
  background-color: unset;
  border: 0px;
  padding: 0px;
}

.form-section .inputEntity .form-select .dk-selected::after {
  content: "";
  display: block;
  width: 16px;
  height: 9px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../Assets/icons/sprite.png);
  background-position: -186px -89px;
  margin: 0px;
  border-left: 0px;
}

.form-section .inputEntity .form-select .dk-selected::before {
  display: none;
}

.form-section .inputEntity .form-select.dk-select-open-down .dk-select-options {
  border-radius: 0;
  border-color: #898989;
  margin-top: -1px;
  padding: 0px;
}

.form-section .inputEntity .form-select .dk-option.dk-option-selected {
  color: #fff;
  background-color: #003a63;
}

.form-section .inputEntity .form-select .dk-option.dk-option-highlight {
  color: #000;
  background-color: #cdcfd3;
}

.form-section .inputEntity .gender-options {
  margin-top: 15px;
}

/* --- Hide default radio --- */
.form-section .inputEntity input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  margin: 0px 5px 0 0;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  outline: none;
}

.form-section .inputEntity input[type="radio"]:checked::before {
  display: block;
  width: 12px;
  height: 12px;
  margin: -1px 5px 0 0;
  border-radius: 50%;
  content: "";
  background: #3d3d3f;
  border: 1px solid #000;
  vertical-align: middle;
}

/* --- Radio label text styling --- */

.form-section .inputEntity label {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin-right: 10px;
  cursor: pointer;
}

/* Optional: better alignment of text next to radio */
.form-section .inputEntity input[type="radio"] + label {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
}

.form-section .professional-info .inputEntity .custom-file-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-section .professional-info .inputEntity .custom-file-input {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 40px;
}

.form-section .professional-info .inputEntity #cvUpload {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.form-section .professional-info .inputEntity #cvUpload::file-selector-button,
.form-section
  .professional-info
  .inputEntity
  #cvUpload::-webkit-file-upload-button,
.form-section .professional-info .inputEntity #cvUpload::-ms-browse {
  display: none;
}

.form-section .professional-info .inputEntity .custom-file-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #898989;
  background-color: #fff;
  color: #818181;
  font-size: 16px;
  font-weight: 300;
  line-height: 40px;
  pointer-events: none;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-section
  .professional-info
  .inputEntity
  .custom-file-input:hover
  .custom-file-display,
.form-section
  .professional-info
  .inputEntity
  .custom-file-input:focus-within
  .custom-file-display {
  border-color: #003a63;
}

.form-section .professional-info .inputEntity .custom-file-display.has-value {
  color: #000;
}

.form-section .professional-info .inputEntity #attachBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #003a63;
  border-radius: 0px;
  box-shadow: none;
}

.form-section .professional-info .inputEntity #attachBtn::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 22px;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../Assets/icons/sprite.png);
  background-position: -266px -467px;
}

.form-section .form-actions #clearForm {
  color: #545456;
  background: none;
  border: none;
  text-decoration: underline;
  padding: 0;
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 38px;
  text-transform: uppercase;
}

.form-section .form-actions .primaryBtn {
  text-align: center;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 36px;
  height: 40px;
  line-height: 38px;
  transition: all 0.5s ease;
  background-color: #fff;
  margin-inline-start: 20px;
}

.form-section .form-actions .primaryBtn:hover {
  color: #fff;
  background-color: #003a63;
  border-color: #003a63;
}

.contactInfo {
  padding: 70px 0px;
}

.contactInfo .mainTitle {
  color: #003a63;
  margin-bottom: 30px;
  font-size: 40px;
}

.contactInfo .addressText {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #545456;
}

.contactInfo .secondaryTitle {
  color: #003a63;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contactInfo .contactInfoListing .listingHolder {
  gap: 0px;
  margin-bottom: 30px;
}

.contactInfo .contactInfoListing .listingHolder .contact-icon {
  text-align: center;
}

.contactInfo .contactInfoListing .listingHolder .contact-icon .circleIcon {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  margin-top: 0;
  margin-bottom: 15px;
  border-color: #003a63;
  margin-inline: auto;
  cursor: unset;
}

.contactInfo
  .contactInfoListing
  .listingHolder
  .contact-icon
  .circleIcon:hover {
  background-color: unset;
}

.contactInfo .contactInfoListing .listingHolder .contact-icon .circleIcon img {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: auto;
  height: auto;
}

.contactInfo .contactInfoListing .listingHolder .contact-icon h5 {
  max-width: 150px;
  margin-inline: auto;
}

.contactInfo .contactInfoListing .listingHolder .contact-icon h5 .normalText a {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #545456;
}

.form-contact-us {
  padding: 70px 0px;
}

.map-section .mainTitle {
  color: #003a63;

  font-size: 40px;
}

.Archive-select {
  padding: 0px;
  margin: 15px 0px 20px 0px;
}

.Archive-select .inputEntity .form-label {
  color: #003a63;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.left-column-part {
  width: 70%;
  padding: 40px 0;
}

.left-column-part .blog-section {
  background: #fff;
  margin-bottom: 30px;
}

.blog-container .columns-join {
  display: flex;
  justify-content: space-between;
}

.blog-section .mainTitle {
  font-size: 40px;
  color: #003a63;

  margin-bottom: 30px;
}

.blog-carousel .blog-item {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.blog-carousel .blog-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  background: linear-gradient(0deg, #1e1e1e 0%, rgba(255, 255, 255, 0) 100%);
}

.blog-carousel .blog-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* .blog-carousel .blog-item:hover img {
  transform: scale(1.05);
} */

/* Content box at bottom-left */
.blog-carousel .blog-item .overlay-content {
  position: absolute;
  bottom: 25px;
  inset-inline-start: 25px;
  z-index: 2;
  color: #fff;
  max-width: calc(100% - 40px);
}

.blog-carousel .blog-item .overlay-content .blog-title {
  margin-bottom: 5px;
}

.blog-carousel .blog-item .overlay-content .blog-title a {
  display: block;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
}

.blog-carousel .blog-item .overlay-content .blog-date {
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 5px;
}

.blog-carousel .blog-item .overlay-content .blog-link {
  color: #fff;
  display: block;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

/* .blog-link:hover {
  color: #00a3d7;
} */

/* OWL DOTS - bottom right inside image */
.blog-carousel .owl-dots {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 20px;
  z-index: 3;
  text-align: end;
}

.blog-carousel .owl-dot {
  width: 15px;
  height: 15px;
  margin-inline-start: 5px;
  border: 1px solid #fff !important;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s ease;
}

.blog-carousel .owl-dot:hover {
  background: #3d3d3f;
}

.blog-carousel .owl-dot.active {
  background: #fff;
}

/* .blog-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
} */

.right-column-part {
  width: 27.5%;
}

.blog-container .left-column-part .blog-list .blog-list-wrap .blogPost {
  margin-bottom: 30px;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostImgCont {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostImgCont
  a {
  display: block;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostImgCont
  a
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blogPost:hover .blogPostImgCont img,
.blogPostImgCont:hover img {
  transform: scale(1.06);
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostInfo
  .blogPostTitle {
  margin-bottom: 12px;
  max-width: 85%;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostInfo
  .blogPostTitle
  a {
  display: block;
  color: #003a63;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  transition: color 0.3s ease;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostInfo
  .blogPostTitle
  a:hover {
  color: #909091;
}

/* .blog-container .left-column-part .blog-list .blog-list-wrap .blogPost .blogPostInfo .blogPostInfos{
      margin-bottom: 12px;
      color: #464646;
        } */
.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostInfo
  .blogPostDate {
  font-size: 16px;
  color: #464646;
}

.blog-container
  .left-column-part
  .blog-list
  .blog-list-wrap
  .blogPost
  .blogPostInfo
  .blogPostLink {
  color: #003a63;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog-container .left-column-part .blog-list .viewAllBottom {
  cursor: pointer;
}

.blog-container .left-column-part .blog-list .viewAllBottom a {
  color: #000;
  border-color: #000;
  padding: 8px 25px;
  display: inline-block;
  transition: all 400ms ease-in-out;
}

.blog-container .left-column-part .blog-list .viewAllBottom a:hover {
  background-color: #000;
  color: #fff;
}

.blog-container .right-column-part {
  padding: 40px 0px;
}

.blog-container .right-column-part .blogNewsletter {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #003a63;
}

.blog-container .right-column-part .blogNewsletter .newsletterTitle {
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.blog-container .right-column-part .blogNewsletter input[type="text"],
.blog-container .right-column-part .blogNewsletter input[type="email"] {
  display: block;
  color: #fff;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 14px;
  background: none;
  border: 1px solid white;
  padding: 0 20px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-bottom: 25px;
  outline: none;
}

.blog-container
  .right-column-part
  .blogNewsletter
  input[type="text"]::placeholder,
.blog-container
  .right-column-part
  .blogNewsletter
  input[type="email"]::placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}

.blog-container .right-column-part .blogNewsletter .primaryBtn {
  color: #003a63;
  background-color: #fff;
  border-color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  display: block;
  transition: all 400ms ease-in-out;
}

.blog-container .right-column-part .blogNewsletter .primaryBtn:hover {
  color: #fff;
  background-color: #003a63;
}

.blog-container .right-column-part .tab-container {
  border: 1px solid #dedede;
}

.blog-container .right-column-part .tab-container .tab-header {
  display: flex;
  margin-bottom: 15px;
}

.blog-container .right-column-part .tab-container .tab-header #recent-tab,
.blog-container .right-column-part .tab-container .tab-header #popular-tab {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 20px;
  margin-bottom: 0;
  color: #adb1b4;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
}

.blog-container
  .right-column-part
  .tab-container
  .tab-header
  #recent-tab.active,
.blog-container
  .right-column-part
  .tab-container
  .tab-header
  #popular-tab.active {
  color: #003a63;
  font-weight: bold;
}

/* Underline for active tab */
.blog-container .right-column-part .tab-container .tab-header a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 20px);
  height: 2px;
  background-color: #003a63;
  display: block;
}

.blog-container .right-column-part .tab-container .tab-content {
  padding: 0 20px;
}

.blog-container .right-column-part .tab-container .tab-content .article {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.blog-container .right-column-part .tab-container .tab-content .article img {
  width: 110px;
  height: 73px;
  object-fit: cover;
  margin-inline-end: 10px;
}

.blog-container .right-column-part .tab-container .tab-content .article h4 {
  /* margin-bottom: 5px; */
  overflow: hidden;
  height: 38px;
}

.blog-container .right-column-part .tab-container .tab-content .article h4 a {
  font-size: 16px;
  line-height: 18px;
  color: #003a63;
  font-weight: bold;
  display: block;
}

.blog-container
  .right-column-part
  .tab-container
  .tab-content
  .article
  .article-date {
  font-size: 14px;
  color: #464646;
  font-weight: 400;
}

.blog-container .right-column-part .categories-box {
  border: 1px solid #dedede;
  padding-top: 20px;
  margin-bottom: 15px;
}

.blog-container .right-column-part .categories-box h3 {
  color: #003a63;
  font-family: Raleway, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  padding-left: 20px;
  padding-bottom: 0;
  margin-bottom: 25px;
}

.blog-container .right-column-part .categories-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-container .right-column-part .categories-box a {
  display: block;
  padding: 8px 20px;
  border-bottom: 1px solid #dedede;
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 15px;
}

.blog-container .right-column-part .categories-box a:hover {
  color: #003a63;
}

.blog-container .right-column-part .categories-box li:last-child a {
  border-bottom: none;
}

.blog-container .right-column-part .tags-box {
  padding-bottom: 20px;
  border: 1px solid #dedede;
  padding-top: 20px;
}

.blog-container .right-column-part .tags-box h3 {
  color: #003a63;
  font-family: Raleway, sans-serif;

  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  padding-left: 20px;
  padding-bottom: 0;
  margin-bottom: 25px;
}

.blog-container .right-column-part .tag-list {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.blog-container .right-column-part .tag-list a {
  display: inline-block;
  padding: 8px 10px;

  background-color: #e4e4e4;
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 15px;
}

.blog-container .right-column-part .tag-list a:hover {
  background-color: rgba(228, 228, 228, 0.5);
}

.why-become-global .listingIcon li h5 span {
  font-size: 17px;
}

.why-become-global .listingIcon .listingHolder .listingItemLI {
  margin-bottom: 0px;
}

.why-become-global.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: unset;
}

/* ==========================
FAQ GLOBAL Section
========================== */
.faqGlobal {
  background: #e8e8e8;
  padding: 90px 0 75px 0;
}

.faqGlobal .mainTitle {
  font-size: 40px;
  color: #003a63;
  margin-bottom: 30px;
}

.faqGlobal .qaItem {
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcfd3;
  margin-bottom: 20px;
}

.faqGlobal .qaItem .expandToggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faqGlobal .qaItem .expandToggle .title {
  font-size: 16px;
  font-weight: 700;
  color: #071c3c;
  position: relative;
  cursor: pointer;
  margin-top: 0px;
}

.faqGlobal .qaItem .title::after {
  display: none;
}

.expandToggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-image: url(../Assets/icons/sprite.png);
  background-position: 0 -581px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.faqGlobal .qaItem.active .expandToggle::after {
  background-position-x: -39px;
  /* minus icon */
}

.faqGlobal .qaItem.active .expandToggle::after {
  transform: rotate(180deg);
}

.faqGlobal .qaItem .expandContent {
  display: none;
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  padding-top: 20px;
}

/* ==============================
   PROGRAM SLIDER STYLES
   ============================== */
.programSlider .listingImage {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  min-height: 218px;
}

.programSlider .listingImage > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.programSlider .listingImage > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 65, 112, 0.6);
  transition: all 600ms ease;
  z-index: 1;
}

.programSlider .listingImage:hover > a::before {
  background: rgba(25, 65, 112, 0.8);
}

.programSlider .listingImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programSlider .listingImage .imageInfo {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.programSlider .listingImage .imageInfo h3 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
}

.programSlider .listingImage .imageInfo h3 a {
  display: block;
  color: #fff;
}

.programSlider .listingImage .imageInfo h4 {
  padding-bottom: 15px;
  border-bottom: 1px solid #a1b2c3;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
}

.programSlider .listingImage .imageInfo h4 a {
  display: block;
  color: #fff;
}

.programSlider .listingImage .imageInfo span a {
  display: block;
  font-size: 16px;
  color: #fff;
}

.programSlider .listingInfo {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.programSlider .listingInfo ul {
  margin-bottom: 10px;
}

.programSlider .listingInfo ul li {
  font-size: 16px;
  font-weight: 300;
  color: #484848;
  position: relative;
  padding-inline-start: 14px;
  text-align: start;
  align-items: start;
  line-height: 28px;
}

.programSlider .listingInfo ul li span {
  font-weight: bold;
}

.programSlider .listingInfo ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #123764;
  position: absolute;
  inset-inline-start: 0;
  border-radius: 100%;
  top: 8px;
}

.programSlider .listingInfo .learnBtn {
  display: block;
  color: #003a63;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
  margin-top: auto;
  align-self: flex-start;
}

.programSlider .listingItem {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.programSlider .owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch;
}

.programSlider .owl-carousel .owl-item {
  display: flex !important;
  align-items: stretch;
}

.programSlider .owl-carousel .listingItem {
  height: 100% !important;
}

.programSlider .owl-carousel .owl-item[style] {
  height: auto !important;
}

.programSlider .owl-dots {
  top: unset;
  bottom: -70px;
}

/* ==============================
 SUCCESS STORY STYLES
 ============================== */
.success-story-section {
  padding: 90px 0 75px 0;
  background: #e8e8e8;
}

.success-story-section .listingImage {
  width: 100%;
  overflow: hidden;
}

.success-story-section .listingImage a {
  display: block;
}

.success-story-section .listingImage img {
  width: 100%;
  object-fit: cover;
}

.success-story-section .listingInfo .story-title {
  margin-bottom: 15px;
  width: 100%;
}

.success-story-section .listingInfo .story-title a {
  font-size: 28px;
  line-height: 30px;
  font-weight: bold;
  color: #003a63;
  display: block;
}

.success-story-section .listingInfo .story-date {
  color: #545456;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.success-story-section .listingInfo .story-text {
  display: block;
  max-height: 170px;
  overflow: hidden;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #545456;
}

.success-story-section .listingInfo .story-text strong {
  font-weight: 700;
}

.success-story-section .listingTitle {
  margin-bottom: 50px;
}

/* .success-story-section .listingTitle a {
  display: inline-block;
  font-size: 40px;
} */
/* .success-story-section .listingTitle #successful-stories{
        color: #003a63;
        margin-inline-end: 35px;
            font-weight: 300;
    text-transform: uppercase;
      }
       .success-story-section .listingTitle #successful-stories .highlight{
        font-weight: 700;
            color: #003a63;
       }
         .success-story-section .listingTitle #related-articles{
color: #545456;
    opacity: .5;
    margin-inline-end: 35px;
    font-weight: 300;
    text-transform: uppercase;
         }
            .success-story-section .listingTitle #related-articles .related{
font-weight: 700;
         } */
/* TAB DEFAULT STYLE */
.success-story-section .listingTitle .tab-link {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  color: #545456;
  /* default gray */
  opacity: 0.7;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
  margin-inline-end: 35px;
}

.success-story-section .listingTitle .tab-link span {
  font-weight: 700;
}

/* ACTIVE TAB */
.success-story-section .listingTitle .tab-link.active {
  color: #003a63 !important;
  /* blue active */
  opacity: 1 !important;
}

/* Highlight text only when active */
.success-story-section .listingTitle .tab-link.active span {
  font-weight: 700;
}

.success-story-section .owl-dots {
  position: absolute;
  top: unset;
  inset-inline-end: 0;
  text-align: end;
  display: flex;
  gap: 10px;
  bottom: 25px;
}

.success-story-section .owl-dot {
  height: 16px;
  width: 16px;

  border: 1px solid #3d3d3f !important;
  border-radius: 100px;
  display: inline-block;
  background: transparent;
  transition: all 0.3s ease;
}

.success-story-section .owl-dot.active {
  background: #071c3c;
  border-color: #071c3c;
}

.success-story-section .owl-nav {
  display: none;
}

/* ==============================
PROJECT LISTING STYLES
 ============================== */

.projectListing .projectCard {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* .projectListing .projectCard .projectImage {
  position: relative;
  flex-shrink: 0;
} */

.projectListing .projectCard .projectImage a {
  display: block;
  height: 100%;
}

.projectListing .projectCard .projectImage a img {
  width: 100%;
  height: 100%;
  min-height: 219px;
  object-fit: cover;
  display: block;
}

.projectListing .projectCard .projectInfo {
  background-color: #003a63;
  color: #fff;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projectListing .projectCard .projectInfo .projectTitle {
  margin-bottom: 10px;
  font-size: 22px;
}

.projectListing .projectCard .projectInfo .projectTitle a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.projectListing .projectCard .projectInfo .projectLocation {
  position: relative;
  padding-inline-start: 16px;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}

.projectListing .projectCard .projectInfo .projectLocation::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  inset-inline-start: 0;
  background-image: url(../Assets/icons/sprite.png);
  background-position: -131px -2px;
}

.projectListing .projectCard .projectInfo ul {
  font-size: 15px;
  line-height: 25px;
  /* margin-bottom: 10px; */
}

.projectListing .projectCard .projectInfo ul li {
  list-style: none;
}

.projectListing .projectCard .projectInfo .projectButton {
  margin-top: 12px;
}

.projectListing .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  list-style: none;
}

.projectListing .mainTitle {
  color: #003a63;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.mrgbtm {
  margin-bottom: 130px;
}

.projectListing .projectCard .projectImage {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  /* min-height: 219px; */
}

.projectListing .projectCard .projectImage .projectIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: 2;
}

.projectDevelopmentSect .projectCard .projectImage::before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(0, 53, 91, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: unset;
}

.projectDevelopmentSect .projectCard .projectImage a img {
  transition: transform 0.6s ease;
}

.projectDevelopmentSect .projectCard:hover .projectImage a img,
.projectDevelopmentSect .projectCard .projectImage:hover a img {
  transform: scale(1.1);
}

.projectListing .projectCard .projectInfo .projectDetails {
  flex-grow: 1;
}

.projectListing .projectCard .projectInfo .projectDetails ul {
  min-height: 50px;
}

/* .projectSection.innerPadding {
  padding-top: 0px;
} */
.projectSection .projectListing:first-child {
  padding-top: 0;
}

/* .projectSection .projectListing {
  padding-top: 75px;
} */

.projectSectionPortfolio
  .projectListing
  .projectCard
  .projectInfo
  .projectTitle {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 8px;
}

.projectSectionPortfolio
  .projectListing
  .projectCard
  .projectInfo
  .projectLocation {
  font-size: 14px;
  font-weight: 300;
}

.projectSectionPortfolio
  .projectListing
  .projectCard
  .projectInfo
  .projectButton
  a {
  width: 100%;
}

.projectSectionPortfolio .projectListing .projectCard .projectInfo ul {
  font-size: 14px;
}

.projectSectionPortfolio .projectListing .viewAllBottom {
  margin-top: 30px;
}

.projectSectionPortfolio .projectListing .viewAllBottom a:hover {
  background-color: #003a63;
  color: #fff;
}

.mainTitleMv {
  color: #003a63;
  font-size: 40px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 300;
}

.theProject .mainTitleMv {
  margin-bottom: 30px;
}

.theProject .projectIntro .listingImage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #e8e8e8;
  padding: 5% 0;
  text-align: center;
  max-height: 200px;
}

.theProject .projectIntro .listingImage img {
  max-width: 90%;
}

.theProject .projectIntro .listingInfos .listingDescription {
  color: #545456;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  padding-inline-start: 15px;
  margin-bottom: 50px;
}

.theProject .projectIntro {
  margin-inline: 0px !important;
}

.theProject .projectIntro .listingInfos .listingHolder {
  gap: 0px;
}

.theProject .projectIntro .listingInfos .listingIcon {
  max-width: 700px;
}

.theProject .projectIntro .listingInfos .listingHolder li {
  display: unset;
}

.theProject .projectIntro .listingInfos .listingHolder li h5 {
  color: #000;
  font-size: 14px;

  text-transform: unset;
}

.theProject .projectIntro .listingInfos .listingHolder li .iconText {
  color: #545456;
  font-size: 15px;
}

.theProject .projectIntro .listingInfos .listingIcon .circleIcon {
  border: 2px solid #003a63;
  width: 112px;
  height: 112px;
  margin-bottom: 8px;
  margin-inline: auto;
  cursor: unset;
}

.theProject .projectIntro .listingInfos .listingIcon .circleIcon:hover {
  background-color: unset;
}

.theProject .projectIntro .listingInfos .listingIcon .circleIcon img {
  width: auto;
  height: auto;
}

.takeAction {
  background-color: #003a63;
  padding: 45px 0;
}

.takeAction .center {
  text-align: center;
}

.takeAction .center .whitetBtn {
  margin-inline-end: 5px;
  cursor: pointer;
}

.contact-panel-popup {
  width: 445px;
  margin: 25px auto;
  background-color: #f4f4f4;
  padding: 30px;
  position: relative;
}

.contact-panel-popup .contact-body {
  opacity: 1;
  max-height: 100%;
  padding: 0px;
}

.contact-panel-popup .contact-header {
  padding: 0px;
}

.contact-panel-popup-detail-page .contact-header h3 {
  font-size: 24px;
}

.contact-panel-popup-detail-page .contact-body .info-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}

.contact-panel-popup-detail-page .contact-body .call-text {
  font-size: 18px;
  font-weight: 400;
}

/* Success Message Popup Styles */
.contact-panel-popup .contact-header h3 {
  color: #003a63;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
}

.contact-panel-popup .contact-body p {
  color: #545456;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}

.contact-panel-popup .success-message h3 {
  color: #003a63;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-panel-popup .success-message p {
  color: #545456;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 25px;
}

.contact-panel-popup .success-message a {
  color: #003a63;
  text-decoration: underline;
  font-weight: 500;
}

.contact-panel-popup .success-message a:hover {
  color: #003a63;
  text-decoration: none;
}

/* Target the actual Fancybox close button */
.fancybox__content .carousel__button.is-close,
.fancybox__slide .carousel__button.is-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px;
  height: 36px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 9999;
  opacity: 0.9;
  cursor: pointer;
}

.fancybox__slide {
  padding: 0 !important;
  /* removes the top/bottom/side padding Fancybox adds */
}

.fancybox__content .carousel__button.is-close svg {
  display: none;
}

.fancybox__content .carousel__button.is-close::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("../Assets/icons/sprite.png");
  background-position: -186px -113px;
  background-repeat: no-repeat;
  background-size: auto;
}

/* gdpr-section  */
.gdpr-section .gdpr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);

  overflow-y: auto;
}

.gdpr-section .gdpr-modal-content {
  position: relative;
  width: 95%;
  max-width: 970px;
  margin: 50px auto;
  background: #fff;
  padding: 30px 75px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gdpr-section .gdpr-modal-content h2 {
  font-size: 30px;
  color: #333;
  margin: 0 0 31px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.gdpr-section .gdpr-modal-content p {
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #545456;
  margin: 0;
}

.gdpr-section .gdpr-modal-content a {
  color: #323232;
  font-size: 20px;
  text-decoration: underline;
  text-align: center;
  display: block;
  margin-top: 5px;
}

.gdpr-section .gdpr-modal-content h3 {
  margin: 20px 0 40px;
  color: #003a63;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Close Button */
.gdpr-section .gdpr-modal-close {
  position: absolute;
  top: 35px;
  right: 25px;
  cursor: pointer;
}

.gdpr-section .fa-2x {
  font-size: 2.5em;
}

/* Slider Styles */
.gdpr-section .gdpr-slider-wrapper {
  position: relative;
  margin-bottom: 70px;
  height: 100px;
}

.gdpr-section .gdpr-slider {
  position: absolute;
  top: -10px;
  left: 0;
  height: 100px;
  width: 25%;
  border: 3px solid #82aa3b;
  border-radius: 70px;
  transition: all 0.3s ease;
  background: transparent;
}

/* Slider Items */
.gdpr-section .gdpr-slider-items {
  list-style: none;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 0;
  margin: 0 0 70px;
}

.gdpr-section .gdpr-slider-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gdpr-section .gdpr-slider-item {
  position: relative;
}

.gdpr-section .gdpr-slider-item .icon-wrapper {
  width: 80px;
  height: 80px;
  background: #fafafa;
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
}

.gdpr-section
  .gdpr-slider-item.active
  + .gdpr-slider-item.active
  .icon-wrapper {
  position: relative;
}

.gdpr-section
  .gdpr-slider-item.active
  + .gdpr-slider-item.active
  .icon-wrapper::before {
  content: "";
  position: absolute;
  border-top: 2px solid #e6e6e6;
  width: 20px;
  inset-inline-end: calc(100% + 60px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gdpr-section
  .gdpr-slider-item.active
  + .gdpr-slider-item.active
  .icon-wrapper::after {
  content: "";
  position: absolute;
  border-left: 2px solid #e6e6e6;
  height: 20px;
  inset-inline-end: calc(100% + 69px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}

.gdpr-section .gdpr-slider-item .icon-wrapper span,
.gdpr-section .gdpr-slider-item .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #595959;
  font-size: 2.5em;
}

.gdpr-section .gdpr-slider-item.active .fas {
  color: #82aa3b;
}

/* Info Sections */
.gdpr-section .gdpr-info-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  flex-wrap: wrap;
}

.gdpr-section .gdpr-info-wrapper .gdpr-info-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #003a63;
}

.gdpr-section .gdpr-info-section {
  width: 50%;
}

.gdpr-section .gdpr-info-section ul {
  list-style: none;
  padding-inline-end: 15px;
}

/* Save Button */
.gdpr-section .gdpr-save {
  text-align: center;
  margin: 40px 0px 30px 0px;
}

.gdpr-section .gdpr-save button {
  background-color: #82aa3b;
  color: #fff;
  border-radius: 40px;
  padding: 6px 21px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

/* Shared LI styling */
.gdpr-section #gdpr-will li,
.gdpr-section #gdpr-wont li {
  position: relative;
  color: #545456;
  font-weight: 400;
  font-size: 13px;
  padding-inline-start: 26px;
  line-height: 30px;
}

/* Green check icon for "This website will:" */
.gdpr-section #gdpr-will li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 13px;
  height: 13px;
  background-image: url("../Assets/icons/check-icon-popup.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Orange cross icon for "This website won't:" */
.gdpr-section #gdpr-wont li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background-image: url("../Assets/icons/false-icon-popup.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Custom radio (stack & appearance) */
.gdpr-section .gdpr-slider-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #bfbfbf;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  order: 2;
  margin-top: 4px;
}

.gdpr-section .gdpr-slider-item input[type="radio"]:checked {
  border: 2px solid rgba(0, 0, 0, 0.2);
  width: 16px;
  height: 16px;
}

.gdpr-section .gdpr-slider-item input[type="radio"]:checked::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #82aa3b;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* Labels */
.gdpr-section .gdpr-slider-item label {
  order: 1;
  color: #595959;
  font-weight: 500;
  font-size: 13px;
  margin-top: 20px;
  display: inline-block;
  line-height: 1.5em;
  text-align: center;
}

/* Settings Icon - scoped */
.gdpr-section #gdpr-settings-icon {
  display: block;
  position: fixed;
  left: 20px;
  /* inset-inline-start -> left for broad support */
  bottom: 20px;
  width: 19px;
  height: 26px;
  font-family: Fontawesome;
  font-size: 22px;
  z-index: 999999;
  cursor: pointer;
  padding-bottom: 114px;
  color: #595959;
}

.gdpr-section #gdpr-settings-icon .fa-cog::before {
  content: "\f013";
}

.gdpr-section .fa-times::before {
  content: "\f00d";
  color: #545456;
}

/* Cookie Popup Styles */
#cookie-popup {
  display: none;
  /* JS will override */
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #222;
  padding: 35px 40px;
  color: white;
  z-index: 9998;
}

.cookie-popup .cookie-popup-bottomPanel {
  display: flex;
  justify-content: space-between;
}

.cookie-popup .cookie-popup-bottomPanel a {
  color: #fff;
}

.cookie-popup .cookie-popup-bottomPanel .header-popup {
  font-size: 20px;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 700;
}

.cookie-popup .cookie-popup-bottomPanel #cookie-content {
  font-size: 14px;
  color: #ccc;
}

.cookie-popup .cookie-popup-bottomPanel .cookie-buttons .primaryBtn {
  color: #fff;
  background-color: transparent;
  border: 2px solid #b3b3b3;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  padding: 12px 15px;
  margin-inline-end: 8px;
  text-transform: unset;
  font-weight: 400;
}

.cookie-popup .cookie-popup-bottomPanel .cookie-buttons .primaryBtn:hover {
  background-color: #b3b3b3 !important;
  border: 2px solid #b3b3b3;
  color: #fff;
}

/* Accept cookies button - checkmark icon before */
.cookie-popup .cookie-buttons .primaryBtn:first-child::before {
  color: #fff;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  display: inline-block;
}

/* Cookies settings button - settings icon after */
.cookie-popup .cookie-buttons .primaryBtn:nth-child(2)::after {
  color: #b2b2b2;
  content: "\f013";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
}

/* Cookies settings button - icon color on hover */
.cookie-popup .cookie-buttons .primaryBtn:nth-child(2):hover::after {
  color: #fff;
}

/* Read More button - external link icon after */
.cookie-popup .cookie-buttons .primaryBtn[href]::after {
  color: #fff;
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
}

.cookie-popup .cookie-buttons .primaryBtn[href] {
  background: grey;
  color: #fff;
  font-size: 12px;
  border: 2px solid grey;
}

.projectSectionPortfolio .projectListing .mainTitleWrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

/* title */
.projectSectionPortfolio .projectListing .mainTitleWrapper .mainTitle {
  margin: 0;

  font-size: 36px;
  line-height: 1;
}

/* stat container */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat {
  display: flex;
  align-items: center;
  /* centers statMain + statText */
  color: #b3b3b3;
}

/* vertical divider between title and stat */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #b3b3b3;
  margin-inline: 23px;
  margin-top: -5px;
}

/* container for number + unit */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat .statMain {
  display: flex;
  align-items: baseline;
  /* aligns "475" and "M$" exactly */
  column-gap: 3px;
}

/* big number */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat .statNumber {
  font-size: 42px;
  line-height: 42px;
  font-weight: bold;
  color: #b3b3b3;
  margin-top: -8px;
}

/* small unit */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat .statUnit {
  font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  position: relative;
  top: -4px;
}

/* text on the right */
.projectSectionPortfolio .projectListing .mainTitleWrapper .stat .statText {
  color: #003a63;
  max-width: 190px;
  font-weight: 300;
  width: 150px;
  margin-inline-start: 8px;
  font-size: 13px;
  line-height: 14px;
  margin-top: -8px;
}

.projectSectionPortfolio .projectListing .projectCardItem .projectCard {
  overflow: hidden;
  position: relative;
}

.projectSectionPortfolio
  .projectListing
  .projectCardItem
  .projectCard.exited::before {
  content: "";
  display: block;
  width: 120px;
  height: 89px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../Assets/icons/sprite.png");
  background-position: -256px -16px;
  z-index: 100;
  pointer-events: none;
}

/* 2️⃣ Overlay on the image */
.projectImage {
  position: relative;
  /* make overlay absolute relative to this */
  overflow: hidden;
  /* prevent overlay from overflowing */
}

.projectImage::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
  /* initial opacity */
  transition: all 0.5s ease;
  z-index: 10;
  /* above image but below buttons/text if any */
}

/* Optional: darken more on hover */
.projectImage:hover::before {
  opacity: 0.5;
}

/* ==============================
PROJECT Carousel Wrapper STYLES
 ============================== */

.projectCarousel-wrapper {
  position: relative;
  width: 100%;
}

.projectCarousel-wrapper .nav-btn.hide {
  opacity: 0;
  pointer-events: none;
}

.projectCarousel-wrapper .projectCarousel .projectSlide {
  height: 610px;
  overflow: hidden;
}

.projectCarousel-wrapper .projectCarousel .projectSlide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.projectCarousel-wrapper .projectCarousel-nav .nav-btn {
  font-size: 0;
  width: 60px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(181, 181, 181, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

/* LEFT arrow position */
.projectCarousel-wrapper .projectCarousel-nav .project-prev {
  inset-inline-start: 95px;
}

/* RIGHT arrow position */
.projectCarousel-wrapper .projectCarousel-nav .project-next {
  inset-inline-end: 95px;
}

.projectCarousel-wrapper .projectCarousel-nav .nav-btn::after {
  content: "";
  display: block;
  width: 40px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../Assets/icons/sprite.png");
  background-repeat: no-repeat;
  background-position: -76px 0;
}

.projectCarousel-wrapper .projectCarousel-nav .project-next::after {
  background-position-y: -421px;
}

.projectCarousel-wrapper .projectCarousel-nav .project-prev::after {
  background-position-y: -360px;
}

.projectCarousel-wrapper .projectCarousel-nav .nav-btn.hide {
  opacity: 0;
  pointer-events: none;
}

.policies .policies-contents .content-info {
  font-size: 16px;
  color: #515151;
  line-height: 28px;
  font-weight: 400;
}

.policies .policies-contents .content-info p {
  margin-bottom: 25px;
}

.policies .policies-contents .content-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.policies .policies-contents .content-info ul li {
  padding-inline-start: 16px;
  position: relative;
}

.policies .policies-contents .content-info ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00355b;
}

.policies .policies-contents .content-info .title {
  /* color: #071c3c; */
  /* color: #333; */
  color: #000;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}

.policies .policies-contents .content-info p a {
  color: #d17c78;
  text-decoration: none;
}

.policies .policies-contents .content-info strong,
.policies .policies-contents .content-info p strong {
  font-size: 13pt;
}

.policies .policies-contents .content-info table {
  border-collapse: collapse;
  margin-bottom: 50px;
}

.policies .policies-contents .content-info table tr td {
  border: 1px solid #e4dddd;
  padding: 10px;
}

.about-program-intro .about-description {
  max-width: 745px;
  margin-bottom: 35px;
  font-size: 20px;
  color: #00355b;
  font-weight: 300;

  line-height: 28px;
}

.about-program-intro .itemiCon {
  margin-bottom: 30px;
}

.about-program-intro .about-program-intro-image {
  display: block;
  margin-inline: auto;
  width: auto;
}

.about-program-intro .listingItem .listingIcon {
  width: 49px;
  height: 49px;
  float: left;
  border: 1px solid #00355b;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  margin-inline-end: 19px;
}

.about-program-intro .listingItem .listingIcon img {
  width: 100%;
}

.about-program-intro .listingItem .listingInfo {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  color: #00355b;
}

.about-program-intro .listingItem .listingInfo .area {
  font-size: 22px;
  color: #00355b;
  font-weight: 300;
  line-height: 18px;
}

.about-program-intro .listingItem .listingInfo span {
  font-weight: bold;
}

.benefitsBanner {
  background-color: #003a63;
}

.benefitsBannerLayer {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.benefitsBannerLayer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: url("./Assets/bannerLayer.png") no-repeat center center/cover;

  z-index: -1;
}

.benefitsBanner .mainTitle {
  font-size: 40px;
  margin-bottom: 30px;
}

.benefitsBanner .listingIcon .benefitItem {
  list-style: none;
  margin-bottom: 30px;
}

.benefitsBanner .listingIcon .benefitItem .circleIcon {
  width: 112px;
  height: 112px;
  margin-inline: auto;
}

.benefitsBanner .listingIcon .benefitItem .circleIcon img {
  width: 80px;
  height: 70px;
}

.benefitsBanner .listingIcon .benefitItem h5 {
  font-weight: 300;
  text-align: center;
  font-size: 18px;
}

.benefitsBanner .listingIcon .benefitItem .circleIcon:hover {
  background-color: unset;
  border-color: #003a63;
}

.benefitsBannerLayer .listingIcon .benefitItem .circleIcon:hover {
  border-color: #fff;
}

.Citizenship-benefit {
  background-color: #e8e8e8;
}

.Citizenship-benefit .listingIcon .benefitItem {
  margin-bottom: 30px;
}

.Citizenship-benefit .listingIcon .benefitItem .circleIcon {
  border-color: #002c61;
}

.Citizenship-benefit .listingIcon .benefitItem .circleIcon img {
  width: 90px;
  height: 90px;
}

.Citizenship-benefit .listingIcon .benefitItem h5 {
  color: #393939;
}

.Citizenship-benefit .listingIcon .benefitItem[style*="display: none"],
.benefitsBanner .listingIcon .benefitItem[style*="display: none"] {
  display: none !important;
}

.Citizenship-benefit
  .listingIcon
  .benefitItem[style*="display: none"]
  .circleIcon,
.benefitsBanner .listingIcon .benefitItem[style*="display: none"] .circleIcon {
  border: none !important;
  display: none !important;
}

.investment-options {
  background-color: #003a63;
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* line-height: unset; */
}

.investment-options::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: url("./Assets/bannerLayer.png") no-repeat center center/cover;

  z-index: -1;
}

.investment-options .mainTitle {
  font-size: 40px;
  margin-bottom: 30px;
}

.investment-options .investment-info h3 {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 28px;
  font-weight: bold;
}

.investment-options .investment-info ul {
  margin-bottom: 30px;
  list-style: none;
}

.investment-options .investment-info ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  padding-inline-start: 14px;
  position: relative;
}

.investment-options .investment-info ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100%;

  position: absolute;
  inset-inline-start: 0;
  top: 11px;
}

.investment-options .investment-info ul li:empty {
  display: none;
}

.investment-options .investment-info ul:empty,
.investment-options .investment-info h3:empty {
  display: none;
}

.investment-options .investment-info ul li strong {
  font-weight: bold;
}

.faqGlobal .qaItem {
  transition: all 0.3s ease;
}

.faqGlobal .primaryBtn {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding-inline: 25px;
  transition: all 400ms ease-in-out;
}

.faqGlobal .primaryBtn:hover {
  color: #fff;
  background-color: #003a63;
  border-color: #003a63;
}

.faqGlobal .qaItem .expandContent ul li {
  padding-inline-start: 14px;
  position: relative;
  list-style: none;
}

.faqGlobal .qaItem .expandContent ul li::before {
  background: #00355b;
  content: "";
  width: 6px;
  height: 6px;

  border-radius: 100%;

  position: absolute;
  inset-inline-start: 0;
  top: 11px;
}

/* Blog List Pagination Styles */
.blog-list-wrap li.blog-item-hidden {
  display: none;
}

/* blog details page styles */
.left-column-part .content-blog-section1 .blogImgContainer {
  margin-bottom: 15px;
}

.left-column-part .content-blog-section1 .blogImgContainer img {
  width: 100%;
  object-fit: cover;
}

.left-column-part .content-blog-section1 p {
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 25px;
}

.left-column-part .content-blog-section1 p a {
  color: #2d7888;
  text-decoration: underline;
}

.left-column-part .content-blog-section1 h3 {
  color: #003a63;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.left-column-part .content-blog-section1 ol,
.left-column-part .content-blog-section1 ul {
  margin-bottom: 25px;
  padding-inline-start: 20px;
}

.left-column-part .content-blog-section1 ol li,
.left-column-part .content-blog-section1 ul li {
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin-inline-start: 12px;
}

.left-column-part .content-blog-section1 .paragraph-before-list {
  margin-bottom: 0;
}

.left-column-part .content-blog-section1 ol li::marker {
  font-weight: bold;
  color: #003a63;
  font-size: 17px;
}

.left-column-part .content-blog-section2 {
  margin-bottom: 20px;
}

.left-column-part .content-blog-section2 .blogImgContainer img {
  width: 100%;
  object-fit: cover;
}

.left-column-part .content-blog-section2 .description {
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
}

.left-column-part .content-blog-section2 .description em {
  font-size: 16px;
}

.left-column-part .content-blog-section1 p strong,
.left-column-part .content-blog-section2 p strong {
  font-weight: bold;
}

.left-column-part .blogNavButtons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.left-column-part .blogNavButtons .blogNavPrev,
.left-column-part .blogNavButton .blogNavNext {
  cursor: pointer;
}

.left-column-part .blogNavButtons a {
  border-color: #000;
  color: #000;
  min-width: 155px;
  transition: all 400ms ease-in-out;
}

.left-column-part .blogNavButtons a:hover {
  color: #fff;
  background-color: #000;
}

.left-column-part .sm-share .shareIcons {
  display: flex;
  align-items: center;
}

.left-column-part .sm-share .st-btn {
  position: relative;
  width: 30px;
  height: 30px;
}

.left-column-part .sm-share .st-btn::before {
  content: "";
  display: block;
  background-image: url(../Assets/icons/sprite.png);
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.left-column-part .sm-share .st-btn.st-facebook::before {
  width: 10px;
  height: 18px;
  background-position: -435px -3px;
}

.left-column-part .sm-share .st-btn.st-twitter::before {
  width: 19px;
  height: 16px;
  background-position: -462px -5px;
}

.left-column-part .sm-share .st-btn.st-linkedin::before {
  width: 19px;
  height: 18px;
  background-position: -541px -3px;
}

.left-column-part .sm-share .st-btn.st-email::before {
  width: 23px;
  height: 16px;
  background-position: -576px -5px;
}

.left-column-part .sm-share .st-linkedin {
  margin-inline-end: 5px;
}

.left-column-part .sm-share {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.left-column-part .sm-share .sm-share-text {
  font-family: Raleway, sans-serif;

  color: #003a63;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.left-column-part .sm-share .shareIcons .st-total {
  color: #555;
  display: inline-block;

  max-width: 80px;
  margin-inline-start: 20px;
  text-align: center;
}

.left-column-part .sm-share .shareIcons .st-total .st-label {
  font-size: 16px;
  line-height: 17px;
  display: block;
  padding: 0;
}

.left-column-part .sm-share .shareIcons .st-total .st-shares {
  font-size: 10px;
  line-height: 10px;
  display: block;
  padding: 0;
}

.left-column-part .blog-section-detail .backToBlogListing {
  margin-bottom: 15px;
}

.left-column-part .blog-section-detail .backToBlogListing a {
  color: #252525;

  font-weight: 300;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

.left-column-part .blog-section-detail .mainTitleMv {
  color: #003a63;
  text-transform: none;
  font-weight: 300;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.left-column-part .blog-section-detail .blog-date-detail {
  color: #474545;

  font-weight: 300;
  font-size: 16px;
  margin-bottom: 25px;
}

.left-column-part .tag-list {
  margin-bottom: 35px;
  display: flex;
  gap: 12px;
}

.left-column-part .tag-list a {
  display: inline-block;
  padding: 8px 10px;
  background-color: #e4e4e4;
  color: #545456;
  font-family: Raleway, sans-serif;
  font-weight: 300;
  font-size: 15px;
}

.left-column-part .tag-list a:hover {
  color: #003a63;
  background-color: rgba(228, 228, 228, 0.5);
}

.blogDetailslider {
  padding-top: 55px;
}

.blogDetailslider .owl-dots {
  display: none;
}

.blogDetailslider .listingInfo .blogPostLink {
  color: #003a63;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 8px;
  display: block;
}

.blogDetailslider .listingImage img {
  min-height: 246px;
}

.blogDetailslider .listingItem {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blogDetailslider .listingInfo {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blogDetailslider .blogPostLink {
  margin-top: auto;
  display: inline-block;
}

.blogDetailslider .listingTitle {
  min-height: 65px;
}

.chartSection {
  padding: 70px 0;
}

.chartSection .chartTitle {
  font-size: 28px;
  font-weight: bold;
  color: #003a63;
  padding: 20px 0 0 20px;
}

.chartSection .chart {
  background: #f1f1f1;
}

/* Global tooltip style */
.k-chart-tooltip {
  border-radius: 4px !important;
  padding: 6px 10px !important;
  font-family: "Raleway", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #fff !important;
  background-repeat: repeat-x !important;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAWCAYAAADAQbwGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi/P//vwMDFQELEP8beQb+HTWQYgP/DHoD/466cAR4edRAyg38P6hLbIAAAwCnWhhVsxvdCAAAAABJRU5ErkJggg==) !important;
  border: 1px solid transparent !important;
  opacity: 1 !important;
}

.chartSection .chartYearSection .chartYear {
  padding: 0;
  margin: 0px;
}

.assetsByCountry {
  margin-bottom: 30px;
}

.mainTitleMv {
  margin-bottom: 30px;
}

.mainTitleMv span {
  font-weight: 700;
}

.chartYearSection #yearChart {
  min-width: 900px;
  /* ensures horizontal scroll */
}

.section {
  padding: 70px 0px;
}

.why-us .heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 20px;
  color: #003a63;
}

.description-info {
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: #545456;
}

.investmentUStats {
  background-color: #003a63;
}

.investmentUStats .aboutUsText .NumberCounter .listingItemLI {
  color: #fff;
  margin-bottom: 30px;
}

.investmentUStats .aboutUsText .NumberCounter .listingHolder {
  justify-content: start;
}

.investmentCycle {
  background: #f1f1f1;
  padding: 40px 0px;
}

.investmentCycle .cycleImage {
  width: 100%;
}

.investmentCycle .cycleImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investmentCycle .cycleText {
  color: #545456;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  justify-content: center;
  max-width: 530px;
  margin-inline-start: 70px;
}

.investmentCycle .row {
  display: flex;
  align-items: center;
}

.investmentproject {
  padding: 70px 0px;
}

.investmentproject .projectListing {
  padding-top: 0px;
}

.ourInvestments .investmentItem .invCountry {
  color: #003a63;
  border: 1px solid #d4d4d4;
  padding: 35px 40px;
}

.ourInvestments .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.ourInvestments .invCountry .invCountryName,
.ourInvestments .invCountry .invCountryTotalAssets {
  font-size: 26px;
  display: inline-block;
}

.ourInvestments .invCountry .invCountryName {
  font-weight: bold;
}

.ourInvestments .investmentItem .invCountry .invCountryImage {
  min-height: 334px;
  text-align: center;
  margin-top: 45px;
}

.ourInvestments .investmentItem .invCountry .invCountryLink {
  margin-top: 45px;
}

.ourInvestments .investmentItem .primaryBtn:hover {
  background-color: #003a63;
  color: #fff;
}

/* ==============================
COOKIE POPUP STYLES
 ============================== */
#cookie-popup {
  display: none;
  /* JS will override */
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #222;
  padding: 35px 40px;
  color: white;
  z-index: 9999;
}

.cookie-popup .cookie-popup-bottomPanel {
  display: flex;
  justify-content: space-between;
}

.cookie-popup .cookie-popup-bottomPanel a {
  color: #fff;
}

.cookie-popup .cookie-popup-bottomPanel .header-popup {
  font-size: 20px;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 700;
}

.cookie-popup .cookie-popup-bottomPanel #cookie-content {
  font-size: 14px;
  color: #ccc;
}

.cookie-popup .cookie-popup-bottomPanel .cookie-buttons .primaryBtn {
  color: #fff;

  background-color: transparent;
  border: 2px solid #b3b3b3;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  padding: 12px 15px;
  margin-inline-end: 8px;
  text-transform: unset;
  font-weight: 400;
}

.cookie-popup .cookie-popup-bottomPanel .cookie-buttons .primaryBtn:hover {
  background-color: #b3b3b3;
  border: 2px solid #b3b3b3;
  color: #fff;
}

.cookie-popup .cookie-buttons .primaryBtn:first-child::before {
  color: #fff;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  display: inline-block;
}

.cookie-popup .cookie-buttons .primaryBtn:nth-child(2)::after {
  color: #b2b2b2;
  content: "\f013";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
}

.cookie-popup .cookie-buttons .primaryBtn:nth-child(2):hover::after {
  color: #fff;
}

.cookie-popup .cookie-buttons .primaryBtn[href]::after {
  color: #fff;
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
}

.cookie-popup .cookie-buttons .primaryBtn[href] {
  background: grey;

  color: #fff;
  font-size: 12px;

  border: 2px solid grey;
}

.map-container {
  position: relative;
  width: 100%;

  height: 525px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mapLocationProject {
  padding: 70px 0;
}

.mapLocationProject .map-section iframe {
  width: 100%;

  display: block;
}

.mapLocationProject .media-wrapper {
  height: 420px;
  overflow: hidden;
}

.mapLocationProject .media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mapLocationProject .media-wrapper iframe {
  width: 100%;
  /* height: 100%; */
  border: 0;
}

.mapLocationProject .mainTitleMv {
  margin-bottom: 30px;
}

.mandatory.email {
  height: 40px !important;
}

.footerEmailInput {
  color: white !important;
}
