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

:root {
  --gold-color: #c8a977;
  --page-container: 10.3125rem;
  --section-padding-top: 3.75rem;
  --section-padding-bottom: 3.75rem;
  --offset-from-header: 28vh; /*used for homepage banner*/
  --home-page-padding-bottom: 3.75rem; /*used for homepage banner*/
  --innerpage-offset-from-header: 10.3125rem; /*used for innerpage*/
  --innerpage-offset-from-footer: 5.3125rem; /*used for innerpage*/
}

@media screen and (max-height: 775px) and (min-width: 1401px) {
  :root {
    --offset-from-header: 26vh;
    --home-page-padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 1400px) {
  :root {
    --page-container: 5.625rem;
    --section-padding-top: 2.8125rem;
    --section-padding-bottom: 2.8125rem;
    --offset-from-header: 8.75rem;
    --home-page-padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --page-container: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --page-container: 0.9375rem;
    --offset-from-header: 6.25rem;
    --section-padding-top: 1.5625rem;
    --section-padding-bottom: 1.5625rem;
    --home-page-padding-bottom: 0.75rem;
    --innerpage-offset-from-header: 6.25rem;
    --innerpage-offset-from-footer: 2.5rem;
  }
}
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

input {
  line-height: normal;
}

button,
input {
  outline: none;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Calibri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.3;
}

@font-face {
  font-family: "Aboreto";
  src: local("Aboreto-Regular"), url("../../fonts/Aboreto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GE SS Two";
  src: local("GE-SS-Two-Bold"), url("../font/GE-SS-Two-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "GE SS Two";
  src: local("GE-SS-Two-Light"), url("../font/GE-SS-Two-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Calibri";
  src: local("Calibri-Light"), url("../font/Calibri-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Calibri";
  src: local("Calibri-Regular"), url("../../fonts/Calibri-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Calibri";
  src: local("Calibri-Bold"), url("../../fonts/Calibri-Bold.ttf") format("truetype");
  font-weight: 700;
}
.page-container {
  width: 100%;
  height: 100%;
  padding-inline: var(--page-container);
}

.golden-btn {
  display: inline-block;
  padding: 0.5625rem 0.8125rem;
  border: 1px solid var(--gold-color);
  color: var(--gold-color);
  background-color: transparent;
  font-weight: 300;
  font-size: 1.125rem;
  border-radius: 2.3125rem;
  background: linear-gradient(to right, var(--gold-color) 0%, var(--gold-color) 100%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: color 0.5s ease, background-size 0.5s ease;
}
@media screen and (max-width: 767px) {
  .golden-btn {
    font-size: 1rem;
  }
}
.golden-btn:hover {
  color: #fff;
  background-size: 100% 100%;
}

.full-golden-btn {
  display: inline-block;
  padding: 0.8125rem;
  border: 1px solid var(--gold-color);
  background-color: var(--gold-color);
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 3.25rem;
  transition: color 0.5s ease, background-size 0.5s ease;
  background: linear-gradient(to right, var(--gold-color) 0%, var(--gold-color) 100%);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .full-golden-btn {
    font-size: 1rem;
  }
}
.full-golden-btn:hover {
  background-size: 0% 100%;
}

@media screen and (min-width: 1400px) {
  html.apple-device {
    font-size: 12.8px;
  }
}

.custom-services .key-strengths-box .box-wrapper .desc,
.heading, .main-heading, .sub-heading, .card-heading, .card-name, .board-committees-title, .gold-bordered-box .desc {
  font-family: "Aboreto", system-ui;
}

@media (max-width: 1440px) {
  :root {
    --page-container:5.3125rem ;
    --margin-around-header-content:5.3125rem ;
  }
}
/* header */
:root {
  --margin-around-header: 3.625rem;
  --margin-around-header-content: 7rem;
}

@media screen and (max-width: 1500px) {
  :root {
    --margin-around-header: 1.25rem;
    --margin-around-header-content: calc(
      var(--page-container) - var(--margin-around-header)
    );
  }
}
@media screen and (max-width: 81.25rem) {
  :root {
    --margin-around-header: 0px;
  }
}
.header {
  background: rgba(2, 29, 73, 0.2509803922);
  margin-inline: var(--margin-around-header);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 5;
  top: 1.4375rem;
  border-radius: 0.75rem;
  color: #fff;
}
.header::after {
  content: "";
  position: absolute;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.header .header-wrapper {
  padding-inline: var(--margin-around-header-content);
  padding-block: 0.8125rem;
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .header .header-content {
    gap: 1rem;
  }
}
.header .header-content .logo {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .header .header-content .logo {
    width: 10.625rem;
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (max-width: 525px) {
  .header .header-content .logo {
    width: 9.25rem;
  }
}
.header .header-content .logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-content .left-side {
  flex-shrink: 0;
}
.header .header-content .right-side {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .header .header-content .right-side {
    gap: 0.5625rem;
  }
}
.header .header-content .center-side {
  flex-grow: 1;
}
.header .language {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 300;
  font-size: 1.125rem;
  color: #fff;
  transition: filter 0.3s;
}
.header .language:hover {
  animation: eazy-pulse 1s ease;
  filter: brightness(0) saturate(100%) invert(69%) sepia(40%) saturate(321%) hue-rotate(358deg) brightness(92%) contrast(92%);
}
.header .nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
.header .nav-items .nav-item {
  font-size: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 81.25rem) {
  .header .nav-items .nav-item.show-menus .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
  }
}
.header .nav-items .nav-item > a {
  color: #fff;
  transition: all 0.4s;
}
.header .nav-items .nav-item:hover > a {
  color: var(--gold-color);
}
.header .nav-items .dropdown-item {
  transition: all 0.4s;
  color: #fff;
  background-color: transparent;
  text-align: start;
}
.header .nav-items .dropdown-item:hover {
  background-color: transparent;
  color: var(--gold-color);
}
.header .nav-items .dropend:hover > .dropdown-item {
  color: var(--gold-color);
}
.header .nav-items .dropdown-menu {
  background-color: rgba(78, 78, 78, 0.2509803922);
  border-radius: 0.75rem;
  color: #fff;
}
.header .nav-items .dropdown-menu::after {
  content: "";
  position: absolute;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 81.313rem) {
  .header .nav-items {
    /* Submenu placement */
    /* hover shows dropdown */
    /* Invisible bridge under the trigger */
  }
  .header .nav-items .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-inline-start: none;
  }
  .header .nav-items .dropdown.active > .dropdown-menu,
  .header .nav-items .dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .header .nav-items .dropdown:not(.dropend)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 1.875rem;
  }
  .header .nav-items .dropdown:not(.dropend) > .dropdown-menu {
    margin-top: 1.875rem;
  }
}
.header .right-side .dropdown-item {
  transition: all 0.3s;
}
.header .right-side .dropdown-item:hover {
  background-color: var(--gold-color);
  color: #fff;
}

.header-btn-close,
.header-btn-open {
  display: none;
}

.header-btn-close {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
}

@media screen and (max-width: 81.25rem) {
  .header {
    z-index: 5;
    border-radius: 0px;
    top: 0px;
  }
  .header.show {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
  .header-btn-close,
  .header-btn-open {
    display: block;
    cursor: pointer;
  }
  .header .header-content .center-side {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsla(217, 95%, 15%, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    padding-top: 3.125rem;
  }
  .header .header-content .nav-items {
    overflow-y: scroll;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-inline: 0.9375rem;
    /* Track */
    /* Handle */
  }
  .header .header-content .nav-items::-webkit-scrollbar {
    width: 0.25rem; /* vertical */
  }
  .header .header-content .nav-items::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0.5rem;
  }
  .header .header-content .nav-items::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 0.5rem;
  }
  .header .nav-items .dropdown-menu {
    position: relative;
    overflow: hidden;
  }
  .header .nav-items .nav-item > a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .dropend .dropdown-toggle::after {
    border-top: 0.3em solid;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    vertical-align: middle;
  }
}
@media screen and (min-width: 81.313rem) {
  .header .center-side {
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.log-in-btn {
  background-color: #af966e;
  border: 1px solid #af966e;
  padding-block: 0.5625rem;
  padding-inline: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #fff;
  font-weight: 300;
  font-size: 1.125rem;
  border-radius: 1.25rem;
  white-space: nowrap;
  line-height: 1.2;
  transition: background-color 0.4s ease;
  /*
  &.show img {
    transform: rotate(180deg);
  }
   */
}
@media screen and (max-width: 767px) {
  .log-in-btn {
    padding: 0.625rem;
  }
}
@media screen and (max-width: 525px) {
  .log-in-btn {
    padding: 2px 0.3125rem;
  }
}
.log-in-btn img {
  transition: transform 0.4s ease;
}
.log-in-btn:hover {
  background-color: transparent;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.search-btn {
  cursor: pointer;
}
.search-btn:hover {
  animation: eazy-pulse 0.6s ease;
}

/*RTL*/
html[dir=rtl] .dropend .dropdown-toggle::after {
  border-right: 0.3em solid;
  border-left: 0;
}

@media screen and (min-width: 81.313rem) {
  html[dir=rtl] .header .nav-items .dropdown-menu .dropdown-menu {
    left: 0;
    right: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
  html[dir=rtl] .dropend .dropdown-toggle::after {
    border-right: 0.3em solid;
    border-left: 0;
  }
}
.home-page,
.inner-page {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(270deg, #021532 23.8%, #000000 94.49%);
}

.banner {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
}

.banner-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-slide-content {
  position: relative;
  z-index: 2;
}

.banner-slide {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: var(--section-padding-bottom);
  padding-top: calc(var(--offset-from-header) - 2rem);
}
.banner-slide .heading {
  font-size: 3.1875rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .banner-slide .heading {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .banner-slide .heading {
    font-size: 2rem;
  }
}
.banner-slide .desc {
  font-weight: 300;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 1400px) {
  .banner-slide .desc {
    margin-bottom: 1.5rem;
    padding-inline-end: 400px;
  }
}
@media screen and (max-width: 992px) {
  .banner-slide .desc {
    padding-inline-end: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner-slide .desc {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
  }
}
.banner-slide .banner-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.banner-slide .banner-img-bg img,
.banner-slide .banner-img-bg video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .banner-slide .banner-img-bg {
    height: 60%;
    top: auto;
  }
}

.slider-navigation {
  display: flex;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .slider-navigation {
    justify-content: center;
  }
}

.nav-slider-button {
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 0.4375rem;
  border: 1px solid var(--gold-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-slider-button.swiper-button-lock {
  display: none;
}

.banner-fixed-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: var(--section-padding-bottom);
}

.banner-fixed-content > div {
  z-index: 3;
}

.banner-fixed-content .banner-slider-pagination {
  position: absolute;
  right: var(--page-container);
  bottom: unset;
  left: unset;
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.banner-fixed-content .banner-slider-pagination .swiper-pagination-bullet {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  outline: 1px solid transparent;
  outline-offset: 0.1875rem;
  opacity: 0.5;
  background-color: var(--gold-color);
  transition: all 0.4s ease;
}
.banner-fixed-content .banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline-color: var(--gold-color);
  opacity: 1;
}

.banner-fixed-content .banner-slider-navigation,
.banner-fixed-content .banner-cards {
  bottom: var(--home-page-padding-bottom);
}

.banner-fixed-content .banner-slider-navigation {
  position: absolute;
  right: var(--page-container);
}
@media screen and (max-width: 767px) {
  .banner-fixed-content .banner-slider-navigation {
    bottom: 0.75rem;
    margin-inline: auto;
    width: 100%;
  }
}

.banner-fixed-content .banner-cards {
  max-width: 20.625rem;
  position: absolute;
  left: var(--page-container);
}

.banner-cards-slider {
  height: 18.75rem;
}
@media screen and (max-width: 1400px) {
  .banner-cards-slider {
    height: 17.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .banner-cards-slider {
    height: 40vh;
  }
}

.banner-card {
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(137, 137, 137, 0.0705882353);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.banner-card .banner-card-content {
  display: flex;
  gap: 0.5rem;
}
.banner-card .card-heading {
  font-size: 1.125rem;
  color: var(--gold-color);
  margin-bottom: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .banner-card .card-heading {
    font-size: 1rem;
  }
}
.banner-card .card-desc {
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
}

.swiper-slide.banner-card {
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: scale(0.95);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}

/* Active slide is bigger + fully visible */
.banner-card.swiper-slide.swiper-slide-prev,
.banner-card.swiper-slide.swiper-slide-next {
  z-index: 2;
  opacity: 0.3;
}

.swiper-slide.banner-card.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.main-heading {
  font-size: 3.1875rem;
  text-align: center;
  color: var(--gold-color);
  margin-bottom: 0.9375rem;
  overflow: hidden;
}
.main-heading span {
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .main-heading {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .main-heading {
    font-size: 2.25rem;
  }
}

.main-info {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.main-info span {
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .main-info {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .main-info {
    font-size: 1.125rem;
  }
}

.services {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-image: url("../img/Frame 1000004999.png");
  mix-blend-mode: exclusion;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .services {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
  }
}

.funds {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.services-cards,
.funds-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 1400px) {
  .services-cards,
  .funds-cards {
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .services-cards,
  .funds-cards {
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.services-card {
  background-color: rgba(200, 169, 119, 0.2196078431);
  border-radius: 1.0625rem;
  padding: 2.125rem 1.8125rem;
  border: 1px solid rgba(200, 169, 119, 0.2196078431);
  transition: background-color 0.8s ease, -webkit-backdrop-filter 0.8s ease;
  transition: background-color 0.8s ease, backdrop-filter 0.8s ease;
  transition: background-color 0.8s ease, backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease;
  flex: 0 0 22.5rem;
}
@media screen and (max-width: 1400px) {
  .services-card {
    flex: 0 0 19.375rem;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .services-card {
    flex: 1 1 100%;
  }
}
.services-card:hover {
  background-color: rgba(18, 18, 18, 0.0117647059);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
}
.services-card .card-img {
  height: 4.875rem;
  width: auto;
  margin-bottom: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .services-card .card-img {
    margin-bottom: 0.9375rem;
  }
}
.services-card .card-img img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
.services-card .heading {
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .services-card .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .services-card .heading {
    font-size: 1.25rem;
  }
}
.services-card .desc {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1400px) {
  .services-card .desc {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .services-card .desc {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.funds-card {
  background-color: rgba(18, 18, 18, 0.0117647059);
  border-radius: 1.0625rem;
  padding: 1.6875rem 1.3125rem;
  border: 1px solid var(--gold-color);
  transition: all 0.8s ease;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  flex: 0 0 17.9375rem;
  transition: background-color 0.8s ease, -webkit-backdrop-filter 0.8s ease;
  transition: background-color 0.8s ease, backdrop-filter 0.8s ease;
  transition: background-color 0.8s ease, backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease;
}
.funds-card:hover {
  background-color: rgba(200, 169, 119, 0.2196078431);
}
@media screen and (max-width: 1400px) {
  .funds-card {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .funds-card {
    flex: 1 1 100%;
  }
}
.funds-card .heading {
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .funds-card .heading {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .funds-card .heading {
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .funds-card .heading span:not(:last-child) {
    margin-inline-end: 0.2em;
  }
}

.heading-with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1400px) {
  .heading-with-button {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-with-button {
    margin-bottom: 1.75rem;
  }
}
.heading-with-button .main-heading {
  margin-bottom: 0px;
  text-align: start;
}

.insights {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.insights-cards-slider,
.news-cards-slider {
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 1400px) {
  .insights-cards-slider,
  .news-cards-slider {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .insights-cards-slider,
  .news-cards-slider {
    margin-bottom: 1.75rem;
  }
}

.insights-card {
  padding: 1.0625rem;
  border-radius: 0.875rem;
  background-color: rgba(255, 255, 255, 0.0509803922);
  height: auto;
}
.insights-card .insights-card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .insights-card .insights-card-wrapper {
    flex-direction: column;
  }
}
.insights-card .insights-card-wrapper .left,
.insights-card .insights-card-wrapper .right {
  flex: 1 1 0px;
}
.insights-card .insights-card-wrapper .info-items {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 1400px) {
  .insights-card .insights-card-wrapper .info-items {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .insights-card .insights-card-wrapper .info-items {
    margin-bottom: 1.25rem;
  }
}
.insights-card .insights-card-wrapper .info-items .info-item {
  font-weight: 300;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .insights-card .insights-card-wrapper .info-items .info-item {
    font-size: 1rem;
  }
}
.insights-card .insights-card-wrapper .info-items .info-item .info-item-title {
  color: var(--gold-color);
}
.insights-card .insights-card-wrapper .info-items .info-item .info-item-value {
  color: #fff;
}
.insights-card .insights-card-wrapper .heading {
  font-size: 1.75rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .insights-card .insights-card-wrapper .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .insights-card .insights-card-wrapper .heading {
    font-size: 1.25rem;
  }
}
.insights-card .insights-card-wrapper .desc {
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2.1875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1400px) {
  .insights-card .insights-card-wrapper .desc {
    margin-bottom: 1.875rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .insights-card .insights-card-wrapper .desc {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
  }
}
.insights-card .insights-card-wrapper .insights-card-img {
  width: 100%;
  border-radius: 0.9375rem;
  overflow: hidden;
}
.insights-card .insights-card-wrapper .insights-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**/
.investor-relations {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.investor-relations-wrapper {
  display: flex;
  gap: 5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 1600px) {
  .investor-relations-wrapper {
    margin-top: 2.5rem;
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 1300px) {
  .investor-relations-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .investor-relations-wrapper {
    margin-top: 1.875rem;
    gap: 1.25rem;
  }
}
.investor-relations-wrapper .left,
.investor-relations-wrapper .right {
  flex: 1 1 0px;
}
.investor-relations-wrapper .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.investor-relations-wrapper .heading-with-button {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1400px) {
  .investor-relations-wrapper .heading-with-button {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .investor-relations-wrapper .heading-with-button {
    margin-bottom: 1.5625rem;
  }
}
.investor-relations-wrapper .heading-with-button .heading {
  font-size: 1.5625rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .investor-relations-wrapper .heading-with-button .heading {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .investor-relations-wrapper .heading-with-button .heading {
    font-size: 1.25rem;
  }
}
.investor-relations-wrapper .tab-container {
  display: none;
  animation: fadeEffect 1s;
}
.investor-relations-wrapper .tab-container.tab-active {
  display: block;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.outer-circle {
  width: 60%;
  aspect-ratio: 1/1;
  padding: 0.625rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .outer-circle {
    scale: 0.8;
  }
}
@media screen and (max-width: 430px) {
  .outer-circle {
    scale: 0.7;
  }
}

.inner-circle {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.inner-circle.rotating-circle {
  position: absolute;
  inset: 0.625rem;
  width: auto;
  height: auto;
  overflow: hidden;
  z-index: 1;
  transform: rotate(0deg);
  transition: transform 1s;
}
.inner-circle.rotating-circle .sector:nth-child(1) {
  background-color: #c8a977;
}
.inner-circle:not(.rotating-circle) {
  z-index: 2;
}
.inner-circle:not(.rotating-circle) .sector.active img {
  filter: brightness(0);
}
.inner-circle:not(.rotating-circle) .sector img {
  transition: filter 1s;
}
.inner-circle:not(.rotating-circle) .sector:nth-child(1) .sector-content {
  position: absolute;
  top: 26%;
  left: 12%;
}
.inner-circle:not(.rotating-circle) .sector:nth-child(2) .sector-content {
  position: absolute;
  top: 26%;
  left: 12%;
  transform: rotate(-60deg);
}
.inner-circle:not(.rotating-circle) .sector:nth-child(3) .sector-content {
  position: absolute;
  top: 26%;
  left: 13%;
  transform: rotate(-120deg);
}
.inner-circle .sector {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 21.13248654% 0%, 50% 50%, 0% 50%);
  transform-origin: 50% 50%;
  cursor: pointer;
}
.inner-circle .sector:nth-child(2) {
  transform: rotate(60deg);
}
.inner-circle .sector:nth-child(3) {
  transform: rotate(120deg);
}

.full-circle-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}

.full-circle {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: transparent;
  position: relative;
}
.full-circle .outer-sector {
  position: absolute;
  width: auto;
  height: auto;
  cursor: pointer;
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  width: 20%;
  transition: color 1s;
}
@media screen and (max-width: 1600px) {
  .full-circle .outer-sector {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .full-circle .outer-sector {
    font-size: 1.125rem;
    width: 27%;
  }
}
.full-circle .outer-sector.active {
  color: var(--gold-color);
}
.full-circle .outer-sector:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-100%);
}
.full-circle .outer-sector:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.full-circle .outer-sector:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translateY(-100%);
}

.report-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.9375rem;
  -moz-column-gap: 1.375rem;
       column-gap: 1.375rem;
}

.report-item {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
}
.report-item .report-item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
  background-image: linear-gradient(90deg, rgba(137, 137, 137, 0.0705882353), rgba(217, 217, 217, 0.0117647059));
  padding: 1.0625rem 1.25rem;
}
@media screen and (max-width: 1400px) {
  .report-item .report-item-wrapper {
    gap: 0.625rem;
    padding: 0.75rem;
  }
}
.report-item .report-item-wrapper .report-img:hover img {
  animation: bounce-down 1s forwards;
}
.report-item .report-year {
  font-size: 1.1875rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .report-item .report-year {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .report-item .report-year {
    font-size: 1rem;
  }
}
.report-item .report-desc {
  font-weight: 300;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .report-item .report-desc {
    font-size: 1rem;
  }
}

.Filings-table {
  width: 100%;
  border-collapse: collapse;
  font-weight: 300;
  font-size: 1.25rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .Filings-table {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .Filings-table {
    font-size: 0.875rem;
  }
}
.Filings-table th,
.Filings-table td {
  border: 1px solid var(--gold-color); /* border for all cells */
  padding: 0.5625rem 0.75rem;
  color: #fff;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .Filings-table th,
  .Filings-table td {
    padding: 0.25rem;
  }
}
.Filings-table thead th {
  background-color: #021d49; /* header background */
}
.Filings-table tbody tr:hover {
  background-color: rgba(2, 29, 73, 0.5176470588); /* hover effect */
}
.Filings-table tr td:nth-child(2),
.Filings-table tr td:nth-child(3),
.Filings-table tr th:nth-child(2),
.Filings-table tr th:nth-child(3) {
  text-align: center;
}

.pdf-download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.investor-relations-wrapper .tab-container,
.investor-relations-wrapper .tab-content {
  height: 100%;
}
.investor-relations-wrapper .reports-chart-container {
  height: calc(100% - 5.4375rem);
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .investor-relations-wrapper .reports-chart-container {
    height: auto;
  }
}

.news,
.reach {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.news-card {
  width: 100%;
  padding: 1.0625rem;
  border-radius: 0.875rem;
  background-color: rgba(255, 255, 255, 0.0509803922);
  font-size: 1.125rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .news-card {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.news-card .card-img {
  width: 100%;
  height: 19.875rem;
  border-radius: 0.875rem;
  overflow: hidden;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .news-card .card-img {
    margin-bottom: 0.9375rem;
  }
}
.news-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-card .date-item {
  color: #fff;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .news-card .date-item {
    margin-bottom: 0.75rem;
  }
}
.news-card .date-item .colored {
  color: var(--gold-color);
}
.news-card .heading {
  font-weight: 400;
  font-size: 1.3125rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .news-card .heading {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .news-card .heading {
    font-size: 1.0625rem;
  }
}
.news-card .desc {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .news-card .desc {
    margin-bottom: 0.75rem;
  }
}
.news-card a,
.news-card .golden-btn {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .news-card a,
  .news-card .golden-btn {
    margin-top: 0.75rem;
  }
}
.news-card .colored {
  color: var(--gold-color);
}

:root {
  --reach-offset: 1.8125rem;
}

@media screen and (max-width: 767px) {
  :root {
    --reach-offset: 0.5rem;
  }
}
.reach-container {
  padding-inline: calc(var(--page-container) - var(--reach-offset));
}

.reach-wrapper {
  border-radius: 1.0625rem;
  background-color: rgba(255, 255, 255, 0.0509803922);
  padding-inline: var(--reach-offset);
  padding-block: 2rem;
}

.reach-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 1400px) {
  .reach-header {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 1550px) {
  .reach-header {
    flex-wrap: wrap;
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .reach-header {
    margin-bottom: 1.25rem;
  }
}
.reach-header .heading {
  font-size: 3.1875rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .reach-header .heading {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .reach-header .heading {
    font-size: 2.125rem;
  }
}

.reach-items {
  display: flex;
  gap: 0.4375rem;
}
@media screen and (max-width: 1300px) {
  .reach-items {
    flex-wrap: wrap;
  }
}

.reach-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background-color: rgba(2, 29, 73, 0.3607843137);
  padding: 1.125rem 1.75rem;
  border-radius: 3.75rem;
  font-weight: 400;
  font-size: 1.3125rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .reach-item {
    font-size: 1.125rem;
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .reach-item {
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
  }
}
.reach-item a {
  font-size: 1.3125rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .reach-item a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .reach-item a {
    font-size: 1rem;
  }
}

.reach-bottom {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reach-bottom {
    flex-direction: column;
  }
}

.map-container {
  padding: 0.875rem;
  border-radius: 0.875rem;
  background-color: #021d49;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .map-container {
    padding: 0.75rem;
  }
}
.map-container iframe {
  filter: grayscale(0.9);
  border-radius: 1rem;
}

.contact-us {
  padding: 1.625rem;
  border-radius: 0.875rem;
  background-color: rgba(2, 29, 73, 0.4901960784);
}
@media screen and (max-width: 767px) {
  .contact-us {
    padding: 0.75rem;
  }
  .contact-us .contact-us-form {
    margin-top: 0px;
  }
}
.contact-us .heading {
  font-size: 1.375rem;
  color: var(--gold-color);
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 1400px) {
  .contact-us .heading {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-us .heading {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}

.contact-us-form .input-wrapper {
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .contact-us-form .input-wrapper {
    margin-bottom: 1rem;
  }
}
.contact-us-form .input-wrapper:last-of-type {
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 1400px) {
  .contact-us-form .input-wrapper:last-of-type {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-us-form .input-wrapper:last-of-type {
    margin-bottom: 1.5625rem;
  }
}
.contact-us-form .input-wrapper input,
.contact-us-form .input-wrapper textarea {
  width: 100%;
  border-radius: 1.375rem;
  border: 1px solid var(--gold-color);
  background-color: rgba(81, 81, 81, 0.3607843137);
  font-size: 1.125rem;
  color: #fff;
  padding: 0.875rem 1.5rem;
  outline: none;
}
@media screen and (max-width: 767px) {
  .contact-us-form .input-wrapper input,
  .contact-us-form .input-wrapper textarea {
    font-size: 1rem;
  }
}
.contact-us-form .input-wrapper input::-moz-placeholder, .contact-us-form .input-wrapper textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.568627451);
}
.contact-us-form .input-wrapper input::placeholder,
.contact-us-form .input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.568627451);
}
.contact-us-form .input-wrapper .error {
  display: inline-block;
  display: none;
  color: red;
  padding-top: 0.5rem;
}
.contact-us-form .full-golden-btn {
  width: 100%;
}

.footer {
  padding-block: 1.25rem;
  background-color: #011029;
  position: relative;
}

.scroll-to-top-button {
  width: 3.125rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.0509803922);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1%;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}
.scroll-to-top-button:hover {
  background: rgba(255, 255, 255, 0.07);
  animation: bounce-top 1s linear infinite;
}

@keyframes bounce-top {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-62%);
  }
  100% {
    transform: translateY(-50%);
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 992px) {
  .footer-content {
    padding-inline: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-content {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-content .copyright {
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-content .copyright {
    text-align: center;
  }
}

.social-icons {
  display: flex;
  gap: 0.625rem;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1294117647);
  background-image: linear-gradient(89deg, var(--gold-color), var(--gold-color));
  background-size: 0% 100%;
  background-position: left;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-size: 100% 100%;
}

.page-loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.125rem;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: linear-gradient(286.36deg, #021532 23.8%, #000000 94.49%);
}

.page-loader-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.125rem;
}
.page-loader-content .loader {
  width: 17.625rem;
  height: 0.3rem;
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.page-loader-content .loader::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: var(--gold-color);
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: animloader 2s linear infinite;
}

@keyframes animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(0%);
  }
}
/* Overlay hidden by default */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 15;
}
.search-overlay .search-box {
  border-radius: 0.9375rem;
  padding: 5.125rem 8.125rem;
  width: 100%;
  background: linear-gradient(279.31deg, #021532 29.29%, #000000 171.8%);
  max-width: 70.125rem;
  display: flex;
  flex-direction: column;
  gap: 5.5625rem;
  margin-inline: 0.9375rem;
}
@media screen and (max-width: 1400px) {
  .search-overlay .search-box {
    padding: 2.5rem 3.75rem;
    max-width: 75%;
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .search-overlay .search-box {
    padding: 0.9375rem;
    max-width: 100%;
    gap: 1.875rem;
  }
}
.search-overlay .search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .search-overlay .search-header > img {
    width: 13.125rem;
  }
}

.search-input-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(81, 81, 81, 0.3607843137);
  border-radius: 2.5rem;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .search-input-box a,
  .search-input-box button {
    min-width: 10.3125rem;
  }
}
.search-input-box input {
  flex: 1;
  padding-inline-start: 1.375rem;
  border: none;
  font-size: 1.3125rem;
  outline: none;
  background: transparent;
  color: #fff;
}
.search-input-box input::-moz-placeholder {
  color: #fff;
}
.search-input-box input::placeholder {
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .search-input-box input {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .search-input-box input {
    font-size: 1rem;
  }
}

@keyframes bounce-down {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0.1875rem);
  }
  60% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes eazy-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@media screen and (max-width: 767px) {
  .banner-fixed-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 1.25rem;
    padding-bottom: 0.9375rem;
  }
  .banner-fixed-content .banner-cards {
    position: static !important;
    max-width: 100%;
    margin-inline: var(--page-container);
  }
  .banner-fixed-content .banner-slider-pagination {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .banner-slider {
    position: static;
  }
  .banner {
    height: unset;
    min-height: unset;
  }
  .banner-slide .banner-img-bg {
    height: 32vh;
  }
  .banner-slide-content {
    padding-top: calc(32vh - var(--offset-from-header) + 0.875rem);
  }
  .slider-navigation.banner-slider-navigation {
    display: none;
  }
  .banner-cards-slider {
    height: 28vh;
  }
  .banner-fixed-content .banner-slider-pagination {
    top: calc(32vh - 1.125rem);
    left: 0;
    right: 0;
  }
}
.inner-page {
  display: flex;
  flex-direction: column;
}

.inner-page-content {
  padding-top: var(--innerpage-offset-from-header);
  padding-bottom: var(--innerpage-offset-from-footer);
  flex: 1;
}

.inner-banner {
  padding-bottom: var(--section-padding-bottom);
}

.section-spacing {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.section-spacing-top-only {
  padding-top: var(--section-padding-top);
}

.inner-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1300px) {
  .inner-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.inner-banner-content .left {
  max-width: 45%;
}
@media screen and (max-width: 1300px) {
  .inner-banner-content .left {
    max-width: 100%;
  }
}
.inner-banner-content .heading {
  font-size: 2.8125rem;
  color: var(--gold-color);
  text-wrap: balance;
}
@media screen and (max-width: 1400px) {
  .inner-banner-content .heading {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .inner-banner-content .heading {
    font-size: 1.875rem;
  }
}
.inner-banner-content .sub-heading {
  font-size: 2.5rem;
  color: var(--gold-color);
  margin-top: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .inner-banner-content .sub-heading {
    font-size: 2.125rem;
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .inner-banner-content .sub-heading {
    font-size: 1.75rem;
  }
}
.inner-banner-content .desc {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .inner-banner-content .desc {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .inner-banner-content .desc {
    font-size: 1rem;
  }
}
.inner-banner-content .inner-banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: screen;
}

.blurred-box {
  padding: 2.1875rem 1.9375rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .blurred-box {
    padding: 1.25rem;
  }
}

.blurred-box-content .heading {
  font-size: 2.5rem;
  color: var(--gold-color);
  margin-bottom: 0.5625rem;
}
@media screen and (max-width: 1400px) {
  .blurred-box-content .heading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .blurred-box-content .heading {
    font-size: 1.625rem;
  }
}
.blurred-box-content .info {
  font-size: 1.25rem;
  color: #ffffff;
}
.blurred-box-content .info a {
  color: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 1400px) {
  .blurred-box-content .info {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .blurred-box-content .info {
    font-size: 1rem;
  }
}

.blurred-boxes {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}
.blurred-boxes .blurred-box:not(:last-child) {
  margin-bottom: 1.125rem;
}

.board-committees .main-info {
  max-width: 55.9375rem;
  margin-inline: auto;
}

.BOD-content {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 1300px) {
  .BOD-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
}
.BOD-content .left {
  width: 31.25rem;
  flex-shrink: 0;
  display: grid;
}
@media screen and (max-width: 1300px) {
  .BOD-content .left {
    width: 100%;
  }
}
.BOD-content .left .BOD-full-card {
  grid-area: 1/1;
  transition: opacity 0.6s ease;
  opacity: 0;
}
.BOD-content .left .BOD-full-card.active {
  opacity: 1;
  z-index: 1;
}
.BOD-content .right {
  width: calc(100% - 31.25rem - 1.875rem);
  flex-shrink: 0;
}
@media screen and (max-width: 1300px) {
  .BOD-content .right {
    width: 100%;
  }
}

.BOD-cards-slider {
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 1400px) {
  .BOD-cards-slider {
    margin-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .BOD-cards-slider {
    margin-bottom: 1rem;
  }
}

.BOD-full-card {
  width: 100%;
  padding: 0.9375rem 1.1875rem 7.5rem;
  border-radius: 0.9375rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
}
@media screen and (max-width: 1400px) {
  .BOD-full-card {
    padding: 0.9375rem;
  }
}
.BOD-full-card .top {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .BOD-full-card .top {
    gap: 1rem;
  }
}
.BOD-full-card .top .card-img {
  width: 9.5rem;
  height: 11.5625rem;
  border-radius: 0.9375rem;
  overflow: hidden;
}
.BOD-full-card .top .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.BOD-full-card .top .card-name {
  font-weight: 700;
  font-size: 1.4375rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .BOD-full-card .top .card-name {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .BOD-full-card .top .card-name {
    font-size: 1.1875rem;
  }
}
.BOD-full-card .top .card-title {
  font-weight: 300;
  font-size: 1.4375rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .BOD-full-card .top .card-title {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .BOD-full-card .top .card-title {
    font-size: 1.1875rem;
  }
}
.BOD-full-card .card-body {
  font-weight: 300;
  font-size: 1.125rem;
  color: #fff;
}
.BOD-full-card .card-body ul {
  list-style-type: disc;
  padding-inline-start: 1.3em;
}
@media screen and (max-width: 767px) {
  .BOD-full-card .card-body {
    font-size: 1rem;
  }
}

.BOD-card {
  border: 1px solid transparent;
  border-radius: 0.9375rem;
  overflow: hidden;
  display: flex;
  height: auto;
  cursor: pointer;
}
.BOD-card.active {
  border: 1px solid var(--gold-color);
}
.BOD-card .BOD-card-wrapper {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
}
.BOD-card .card-img {
  height: 22.125rem;
  width: 100%;
  border-radius: 0.9375rem;
  overflow: hidden;
  margin-bottom: 0.9375rem;
}
.BOD-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.BOD-card .card-name {
  font-weight: 700;
  font-size: 1.4375rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .BOD-card .card-name {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .BOD-card .card-name {
    font-size: 1.1875rem;
  }
}
.BOD-card .card-title {
  font-weight: 300;
  font-size: 1.4375rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .BOD-card .card-title {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .BOD-card .card-title {
    font-size: 1.1875rem;
  }
}

.board-committees-groups {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 1400px) {
  .board-committees-groups {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .board-committees-groups {
    margin-top: 2.1875rem;
  }
}

.board-committees-group .board-committees-title {
  margin-bottom: 2.3125rem;
  font-size: 2.1875rem;
  color: var(--gold-color);
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .board-committees-group .board-committees-title {
    font-size: 1.75rem;
    margin-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .board-committees-group .board-committees-title {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
  }
}

.board-committees-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.board-committees-card {
  flex: 0 0 20.625rem;
}
@media screen and (max-width: 767px) {
  .board-committees-card {
    flex: 1 1 100%;
  }
}
.board-committees-card .card-img {
  width: 80%;
  margin-inline: auto;
  height: 17.875rem;
  border-radius: 0.9375rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.board-committees-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.board-committees-card .card-body {
  padding: 4.0625rem 0.75rem 1.625rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  border-radius: 0.9375rem;
  margin-top: -2.8125rem;
  font-size: 1.4375rem;
}
@media screen and (max-width: 1400px) {
  .board-committees-card .card-body {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .board-committees-card .card-body {
    font-size: 1.1875rem;
  }
}
.board-committees-card .card-body .card-name {
  font-weight: 700;
  font-size: inherit;
  color: var(--gold-color);
  text-align: center;
}
.board-committees-card .card-body .card-title {
  font-weight: 300;
  font-size: inherit;
  color: #fff;
  text-align: center;
}

.articles-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  row-gap: 1.75rem;
  -moz-column-gap: 1.5625rem;
       column-gap: 1.5625rem;
  max-width: 84.375rem;
  margin-inline: auto;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .articles-container {
    margin-top: 1rem;
    grid-template-columns: 1fr;
  }
}

.article {
  width: 100%;
  cursor: pointer;
}
.article .article-container {
  width: 100%;
  border: 1px solid var(--gold-color);
  border-radius: 0.9375rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  padding: 0.8125rem 2.1875rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.article .article-container .article-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.article .article-container .article-content .article-title {
  font-size: 1.5625rem;
  color: #fff;
}

.overview-boxes-content {
  display: flex;
  gap: 1.625rem;
  padding-bottom: var(--section-padding-bottom);
}
@media screen and (max-width: 1300px) {
  .overview-boxes-content {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.our-promise {
  padding-top: var(--section-padding-top);
}

.our-promise-slider-container {
  margin-top: 3.75rem;
}

.our-promise-slider {
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 1400px) {
  .our-promise-slider {
    margin-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .our-promise-slider {
    margin-bottom: 1rem;
    padding-inline: var(--page-container);
  }
}

.swiper-slide.our-promise-card {
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  border-radius: 0.875rem;
  overflow: hidden;
  transform: scale(0.85);
  opacity: 0.16;
  transition: transform 0.4s, opacity 0.4s;
  height: auto;
}
.swiper-slide.our-promise-card.swiper-slide-next, .swiper-slide.our-promise-card.swiper-slide-prev {
  opacity: 0.37;
  transform: scale(0.9);
}
.swiper-slide.our-promise-card.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.swiper-slide.our-promise-card .card-wrapper {
  padding: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .swiper-slide.our-promise-card .card-wrapper {
    padding: 1.125rem;
  }
}
.swiper-slide.our-promise-card .card-wrapper .heading {
  font-weight: 400;
  font-size: 1.75rem;
  text-align: center;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .swiper-slide.our-promise-card .card-wrapper .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide.our-promise-card .card-wrapper .heading {
    font-size: 1.25rem;
  }
}
.swiper-slide.our-promise-card .card-wrapper .desc {
  font-weight: 300;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .swiper-slide.our-promise-card .card-wrapper .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide.our-promise-card .card-wrapper .desc {
    font-size: 1rem;
  }
}

.slider-navigation.our-promise-slider-navigation {
  justify-content: center;
}

.inner-services-boxes,
.offerings-boxes,
.privileges-boxes {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .inner-services-boxes,
  .offerings-boxes,
  .privileges-boxes {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}

.inner-services-box {
  border: 1px solid #2f2f2f;
  background-color: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  flex: 0 0 22.0625rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .inner-services-box {
    flex: 1 1 100%;
  }
}
.inner-services-box .box-wrapper {
  padding: 1.4375rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .inner-services-box .box-wrapper {
    padding: 1rem;
  }
}
.inner-services-box .icon {
  margin-bottom: 1rem;
}
.inner-services-box .desc {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .inner-services-box .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .inner-services-box .desc {
    font-size: 1rem;
  }
}

.offerings-box {
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  flex: 0 0 22.0625rem;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .offerings-box {
    flex: 1 1 100%;
  }
}
.offerings-box .box-wrapper {
  padding: 0.75rem 1.5625rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .offerings-box .box-wrapper {
    padding: 1rem;
  }
}
.offerings-box .icon {
  margin-bottom: 1rem;
  text-align: center;
}
.offerings-box .desc {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .offerings-box .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .offerings-box .desc {
    font-size: 1rem;
  }
}

.privileges-box {
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  flex: 0 0 22.0625rem;
  background-color: rgba(47, 47, 47, 0.3019607843);
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .privileges-box {
    flex: 1 1 100%;
  }
}
.privileges-box .box-wrapper {
  padding: 1.375rem;
}
@media screen and (max-width: 767px) {
  .privileges-box .box-wrapper {
    padding: 1rem;
  }
}
.privileges-box .icon {
  margin-bottom: 2.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privileges-box .icon {
    margin-bottom: 1rem;
  }
}
.privileges-box .desc {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .privileges-box .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .privileges-box .desc {
    font-size: 1rem;
  }
}

.general-info {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.general-info .sub-heading {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--gold-color);
  font-weight: 600;
  padding-top: 12px;
}
@media screen and (max-width: 1400px) {
  .general-info {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .general-info {
    font-size: 1rem;
  }
}
.general-info a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease-out;
}
.general-info a:hover {
  color: var(--gold-color);
}

.benefits .main-heading {
  text-align: start;
}
.benefits .insights-card .insights-card-wrapper .desc {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.benefits .insights-card .insights-card-wrapper .desc:last-child {
  margin-bottom: 0px;
}

.eligible-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7.5rem;
  margin-top: 3.6875rem;
}
@media screen and (max-width: 1400px) {
  .eligible-cards {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .eligible-cards {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.eligible-card .card-img {
  margin-bottom: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .eligible-card .card-img {
    margin-bottom: 1rem;
  }
}
.eligible-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(-2rem 1.6875rem 3.25rem rgba(0, 0, 0, 0.25));
}
.eligible-card .heading {
  font-weight: 300;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .eligible-card .heading {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .eligible-card .heading {
    font-size: 1rem;
  }
}

.tab-content {
  width: 100%;
}

.concierge-services {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .concierge-services {
    flex-direction: column;
  }
}
.concierge-services .left,
.concierge-services .right {
  width: 100%;
}
.concierge-services .left {
  max-width: 24.6875rem;
}
@media screen and (max-width: 1400px) {
  .concierge-services .left {
    max-width: 21.875rem;
  }
}
@media screen and (max-width: 767px) {
  .concierge-services .left {
    max-width: 100%;
  }
}

.concierge-services-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.concierge-services-item {
  padding: 1.25rem 2.1875rem;
  display: block;
  cursor: pointer;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0.875rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  transition: all 0.3s;
}
@media screen and (max-width: 1400px) {
  .concierge-services-item {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .concierge-services-item {
    padding: 0.75rem 0.9375rem;
  }
}
.concierge-services-item:not(.active):hover {
  background-color: rgba(49, 49, 49, 0.1725490196);
  border: 1px solid #594c37;
}
.concierge-services-item.active {
  border: 1px solid var(--gold-color);
}
.concierge-services-item span {
  font-size: 1.5625rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .concierge-services-item span {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .concierge-services-item span {
    font-size: 1.1875rem;
  }
}

.global-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid #62594a;
  border-inline-end: 0px;
  border-radius: 0.875rem;
  /* Make first column wider */
  /* Borders for cells */
  /* Header row */
}
.global-table th:first-child,
.global-table td:first-child {
  width: 70%;
}
.global-table th,
.global-table td {
  border-inline-end: 1px solid #62594a;
  padding: 0.75rem 2.25rem;
}
@media screen and (max-width: 1400px) {
  .global-table th,
  .global-table td {
    padding: 0.75rem 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .global-table th,
  .global-table td {
    padding: 0.75rem;
  }
}
.global-table thead th {
  font-weight: 400;
  font-size: 1.5625rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .global-table thead th {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .global-table thead th {
    font-size: 1.25rem;
  }
}
.global-table td {
  border-top: 1px solid #62594a;
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .global-table td {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .global-table td {
    font-size: 1rem;
  }
}
.global-table tr:last-child th:first-child {
  border-start-start-radius: 0.9375rem;
}
.global-table tr:last-child th:last-child {
  border-start-end-radius: 0.9375rem;
}
.global-table tr:last-child td:first-child {
  border-end-start-radius: 0.9375rem;
}
.global-table tr:last-child td:last-child {
  border-end-end-radius: 0.9375rem;
}

.benefits .insights-cards {
  margin-top: 3.75rem;
}
@media screen and (max-width: 1400px) {
  .benefits .insights-cards {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits .insights-cards {
    margin-top: 1.25rem;
  }
}

.tabs-content-items .tab-content {
  display: none;
}
.tabs-content-items .tab-content.active {
  display: block;
}

.book-services-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6875rem 1.4375rem;
  margin-top: 2.8125rem;
}

.book-services-item {
  padding: 0.8125rem 2.5rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  border: 1px solid var(--gold-color);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  border-radius: 0.875rem;
  color: #fff;
  font-size: 1.5625rem;
  text-align: center;
  transition: background-color 0.3s ease;
}
.book-services-item:hover {
  background-color: rgba(49, 49, 49, 0.03);
}
@media screen and (max-width: 767px) {
  .book-services-item {
    padding: 0.8125rem;
    width: 100%;
  }
}
.book-services-item a {
  white-space: nowrap;
  color: inherit;
  transition: color 0.2s;
}
.book-services-item a:not([href^="https://wa.me/"]):not([href^="tel:"]), .book-services-item a[href^="mailto:"] {
  text-decoration: underline;
}
.book-services-item a:hover {
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .book-services-item {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .book-services-item {
    font-size: 1.25rem;
  }
}

.key-strengths-boxes {
  display: flex;
  justify-content: center;
  row-gap: 2.1875rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .key-strengths-boxes {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}

.key-strengths-box {
  width: calc(50% - 0.5rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .key-strengths-box {
    width: 100%;
  }
}
.key-strengths-box .box-wrapper {
  border: 0.5px solid var(--gold-color);
  padding: 1.75rem 2.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.0625rem;
  height: 100%;
  min-height: 9.3125rem;
  background-color: rgba(18, 18, 18, 0.0117647059);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.key-strengths-box .desc {
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .key-strengths-box .desc {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .key-strengths-box .desc {
    font-size: 1.125rem;
  }
}

.asset-boxes {
  display: flex;
  justify-content: center;
  gap: 2.625rem;
  flex-wrap: wrap;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .asset-boxes {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}

.gold-bordered-box .box-wrapper {
  border: 0.5px solid var(--gold-color);
  padding: 2.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.0625rem;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.0117647059);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
@media screen and (max-width: 1400px) {
  .gold-bordered-box .box-wrapper {
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .gold-bordered-box .box-wrapper {
    padding: 1rem;
  }
}
.gold-bordered-box .desc {
  font-weight: 300;
  font-size: 1.6875rem;
  color: var(--gold-color);
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .gold-bordered-box .desc {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .gold-bordered-box .desc {
    font-size: 1.25rem;
  }
}

.gold-bordered-box.asset-box {
  width: calc(33.333% - 1.75rem);
  height: auto;
}
@media screen and (max-width: 1200px) {
  .gold-bordered-box.asset-box {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .gold-bordered-box.asset-box {
    width: 100%;
  }
}
.gold-bordered-box.asset-box .box-wrapper {
  min-height: 9.3125rem;
}
@media screen and (max-width: 767px) {
  .gold-bordered-box.asset-box .box-wrapper {
    min-height: auto;
  }
}

.public-markets-content .sub-heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .public-markets-content .sub-heading {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .public-markets-content .sub-heading {
    font-size: 1.25rem;
  }
}
.public-markets-content .sub-info {
  font-weight: 300;
  font-size: 1.1875rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .public-markets-content .sub-info {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .public-markets-content .sub-info {
    font-size: 1rem;
  }
}

.income-portfolio-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 8.6875rem;
  gap: 1.5625rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .income-portfolio-boxes {
    grid-auto-rows: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}

.public-markets {
  margin-inline: auto;
}

.public-markets-content {
  max-width: 65.6875rem;
  margin-top: 1.375rem;
  margin-inline: auto;
}

.intro-section-with-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1300px) {
  .intro-section-with-image {
    flex-direction: column;
    align-items: flex-start;
  }
}
.intro-section-with-image .main-heading,
.intro-section-with-image .main-info {
  text-align: start;
}
.intro-section-with-image .left {
  max-width: 40.9375rem;
}
@media screen and (max-width: 1300px) {
  .intro-section-with-image .left {
    max-width: unset;
  }
}
.intro-section-with-image .right-img {
  height: 27.8125rem;
}
@media screen and (max-width: 1300px) {
  .intro-section-with-image .right-img {
    height: auto;
  }
}
.intro-section-with-image .right-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: lighten;
}

.private-markets-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 19.1875rem;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .private-markets-boxes {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
}

.fund-management-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  row-gap: 2.375rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .fund-management-boxes {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: unset;
  }
}

.fund-management-box .box-wrapper {
  border: 0.5px solid var(--gold-color);
  padding: 2.8125rem 1.5625rem;
  border-radius: 1.0625rem;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.0117647059);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .fund-management-box .box-wrapper {
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .fund-management-box .box-wrapper {
    padding: 1rem 0.5rem;
  }
}
.fund-management-box .heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
  margin-bottom: 1rem;
}
@media screen and (max-width: 1400px) {
  .fund-management-box .heading {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .fund-management-box .heading {
    font-size: 1.25rem;
  }
}
.fund-management-box .desc {
  font-weight: 300;
  font-size: 1.1875rem;
  color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1400px) {
  .fund-management-box .desc {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .fund-management-box .desc {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}
.fund-management-box .golden-btn {
  margin-top: auto;
}

.blended-img .inner-banner-img img {
  mix-blend-mode: lighten;
}

.unblended-img .inner-banner-img img {
  mix-blend-mode: unset;
}

.fund-management-content {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .fund-management-content {
    flex-direction: column;
  }
}
.fund-management-content .left {
  max-width: 35.625rem;
}
@media screen and (max-width: 1400px) {
  .fund-management-content .left {
    max-width: 100%;
  }
}
.fund-management-content .left > h1, .fund-management-content .left > div {
  text-align: start;
}

.fund-table.global-table td,
.fund-table.global-table th {
  vertical-align: top;
  font-size: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .fund-table.global-table td,
  .fund-table.global-table th {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .fund-table.global-table td,
  .fund-table.global-table th {
    font-size: 1rem;
  }
}
.fund-table.global-table th:first-child,
.fund-table.global-table td:first-child {
  width: 30%;
  font-weight: 700;
}
.fund-table.global-table tr:first-child td:first-child {
  border-start-start-radius: 0.9375rem;
}
.fund-table.global-table tr:first-child td:last-child {
  border-start-end-radius: 0.9375rem;
}

.fact-sheet-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.fact-sheet-years-tabs-container {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  max-width: 32.5rem;
}
@media screen and (max-width: 767px) {
  .fact-sheet-years-tabs-container {
    max-width: 100%;
  }
}
.fact-sheet-years-tabs-container .nav-prev,
.fact-sheet-years-tabs-container .nav-next {
  font-size: 1.75rem;
  color: var(--gold-color);
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .fact-sheet-years-tabs-container .nav-prev,
  .fact-sheet-years-tabs-container .nav-next {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fact-sheet-years-tabs-container .nav-prev,
  .fact-sheet-years-tabs-container .nav-next {
    font-size: 1.25rem;
  }
}

.fact-sheet-years-tab {
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.fact-sheet-years-tab.active {
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .fact-sheet-years-tab {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fact-sheet-years-tab {
    font-size: 1.25rem;
  }
}

.fact-sheet-documents-container {
  width: 100%;
  max-width: 79.6875rem;
}
@media screen and (max-width: 1400px) {
  .fact-sheet-documents-container {
    max-width: 100%;
  }
}

.fact-sheet-documents-wrapper {
  width: 100%;
  display: none;
  animation: fadeEffect 1s;
}
.fact-sheet-documents-wrapper.active {
  display: block;
}

.fact-sheet-documents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 1400px) {
  .fact-sheet-documents {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 0.875rem;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fact-sheet-document {
  width: 100%;
  cursor: pointer;
}
.fact-sheet-document .fact-sheet-document-container {
  width: 100%;
  border: 1px solid var(--gold-color);
  border-radius: 0.9375rem;
  background-color: rgba(49, 49, 49, 0.231372549);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  padding: 0.8125rem 2.1875rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.fact-sheet-document .fact-sheet-document-container .fact-sheet-document-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.fact-sheet-document .fact-sheet-document-container .fact-sheet-document-content .fact-sheet-document-title {
  font-size: 1.5625rem;
  color: #fff;
}

.no-section-spacing {
  padding-block: 0px;
}

.online-trading-boxes-content {
  display: grid;
  grid-template-columns: repeat(3, 22.0625rem);
  gap: 2.8125rem;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .online-trading-boxes-content {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .online-trading-boxes-content {
    gap: 1rem;
  }
}
.online-trading-boxes-content .online-trading-box {
  padding-block: 2.6875rem;
  padding-inline: 1.1875rem;
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.25rem);
  backdrop-filter: blur(0.25rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .online-trading-boxes-content .online-trading-box {
    padding-block: 1.25rem;
  }
}
.online-trading-boxes-content .online-trading-box .heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
  padding-inline-end: 2.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .online-trading-boxes-content .online-trading-box .heading {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .online-trading-boxes-content .online-trading-box .heading {
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
    padding-inline-end: 0px;
  }
}
.online-trading-boxes-content .online-trading-box .info {
  font-size: 1.25rem;
  color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .online-trading-boxes-content .online-trading-box .info {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .online-trading-boxes-content .online-trading-box .info {
    font-size: 1rem;
  }
}

.asset-management-services-boxes {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .asset-management-services-boxes {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}

.asset-management-services-box {
  width: calc(33.333% - 1rem);
  perspective: 62.5rem;
}
@media screen and (max-width: 1200px) {
  .asset-management-services-box {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .asset-management-services-box {
    width: 100%;
  }
}
.asset-management-services-box .card-inner {
  display: grid; /* stack both faces */
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border: 0.5px solid var(--gold-color);
  border-radius: 0.875rem;
}
.asset-management-services-box:hover .card-inner {
  transform: rotateY(180deg);
}
.asset-management-services-box .card-face {
  grid-area: 1/1;
  backface-visibility: hidden;
  padding: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.875rem;
}
.asset-management-services-box .card-back {
  transform: rotateY(180deg);
}
.asset-management-services-box .card-back,
.asset-management-services-box .card-front {
  border-radius: 0.875rem;
  background-color: rgba(18, 18, 18, 0.0117647059);
}
.asset-management-services-box .heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .asset-management-services-box .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .asset-management-services-box .heading {
    font-size: 1.25rem;
  }
}
.asset-management-services-box .desc {
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .asset-management-services-box .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .asset-management-services-box .desc {
    font-size: 1rem;
  }
}

.requirements-content {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 992px) {
  .requirements-content {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.requirements-content .main-heading {
  text-align: start;
}

.requirements-list {
  list-style: disc;
  padding-inline: 1.3em;
}
.requirements-list li {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .requirements-list li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .requirements-list li {
    font-size: 1rem;
  }
}
.requirements-list li:not(:last-child) {
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .requirements-list li:not(:last-child) {
    margin-bottom: 0.875rem;
  }
}
.requirements-list a {
  color: inherit;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.requirements-contact-items.contact-items {
  max-width: 39.125rem;
}
@media screen and (max-width: 992px) {
  .requirements-contact-items.contact-items {
    max-width: 100%;
  }
}

.contact-item-content {
  padding: 1rem 1.75rem;
  border-radius: 1.25rem;
  background-color: rgba(81, 81, 81, 0.3607843137);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  display: flex;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .contact-item-content {
    gap: 1rem;
    padding: 1rem;
  }
}
.contact-item-content ul {
  list-style: none;
  padding-inline: 0px;
}
.contact-item-content p,
.contact-item-content a,
.contact-item-content li {
  font-size: 1.3125rem;
  color: #fff;
  transition: color 0.2s;
}
@media screen and (max-width: 1400px) {
  .contact-item-content p,
  .contact-item-content a,
  .contact-item-content li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-item-content p,
  .contact-item-content a,
  .contact-item-content li {
    font-size: 1rem;
  }
}
.contact-item-content a[href^="mailto:"] {
  text-decoration: underline;
}
.contact-item-content a:hover {
  color: var(--gold-color);
}

.dfic-boxes {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .dfic-boxes {
    margin-block: 1.25rem;
    gap: 1rem;
  }
}

.dfic-box {
  width: calc(33.333% - 1.75rem);
}
@media screen and (max-width: 1200px) {
  .dfic-box {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .dfic-box {
    width: 100%;
  }
}
.dfic-box .box-wrapper {
  padding: 2.875rem 0.75rem;
  background: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.dfic-box .box-wrapper:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.25);
  background: rgba(71, 71, 71, 0.42);
}
.dfic-box .heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .dfic-box .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .dfic-box .heading {
    font-size: 1.25rem;
  }
}

.news-date-item {
  font-weight: 300;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .news-date-item {
    font-size: 1rem;
  }
}
.news-date-item .colored {
  color: var(--gold-color);
}

.news-details-content .news-heading {
  font-size: 2.8125rem;
  color: var(--gold-color);
  margin-bottom: 2.6875rem;
}
@media screen and (max-width: 1400px) {
  .news-details-content .news-heading {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .news-details-content .news-heading {
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
  }
}
.news-details-content .news-image {
  margin-inline: auto;
  max-width: 56.25rem;
  margin-bottom: 2.6875rem;
  border-radius: 0.875rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .news-details-content .news-image {
    margin-bottom: 1.25rem;
  }
}
.news-details-content .news-image img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 37.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-details-content .news-details-info {
  font-weight: 300;
  font-size: 1.4375rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .news-details-content .news-details-info {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .news-details-content .news-details-info {
    font-size: 1.125rem;
  }
}

.heading-with-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1400px) {
  .heading-with-buttons {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-with-buttons {
    margin-bottom: 1.75rem;
  }
}
.heading-with-buttons .main-heading {
  margin-bottom: 0px;
  text-align: start;
}
.heading-with-buttons .right-buttons {
  display: flex;
  gap: 0.625rem;
}

.full-news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  gap: 1.5625rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1400px) {
  .full-news-cards {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .full-news-cards {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
}

.papagination-items {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.8125rem;
}
.papagination-items .papagination-item {
  font-size: 1.6875rem;
  color: #50493e;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .papagination-items .papagination-item {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .papagination-items .papagination-item {
    font-size: 1.25rem;
  }
}
.papagination-items .papagination-item.active {
  color: var(--gold-color);
  font-size: 2.125rem;
}
@media screen and (max-width: 1400px) {
  .papagination-items .papagination-item.active {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .papagination-items .papagination-item.active {
    font-size: 1.6875rem;
  }
}

.news-dropdown .dropdown-menu {
  background-color: rgba(200, 169, 119, 0.8509803922);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
}
.news-dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  cursor: pointer;
}
.news-dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--gold-color);
  background-color: #fff;
}

.general-contact-content {
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 1400px) {
  .general-contact-content {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 1200px) {
  .general-contact-content {
    flex-direction: column;
  }
}
.general-contact-content .left,
.general-contact-content .right {
  flex: 1 1 0px;
}
.general-contact-content .main-heading {
  text-align: start;
}
.general-contact-content .right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .general-contact-content .right {
    gap: 0.9375rem;
  }
}
.general-contact-content .right .main-heading {
  margin-bottom: 0px;
}

.Whistleblowing-content .main-heading,
.Whistleblowing-content .main-info {
  text-align: start;
}

.grey-form .grey-form-wrapper {
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
  padding: 3.125rem 2.75rem;
}
@media screen and (max-width: 1400px) {
  .grey-form .grey-form-wrapper {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .grey-form .grey-form-wrapper {
    padding: 1rem;
  }
}
.grey-form .form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.grey-form .form-row:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 992px) {
  .grey-form .form-row {
    flex-direction: column;
    grid-area: 1rem;
    margin-bottom: 1rem;
  }
}
.grey-form .form-group {
  width: calc(50% - 0.375rem);
}
@media screen and (max-width: 992px) {
  .grey-form .form-group {
    width: 100%;
  }
}
.grey-form .form-group .full-golden-btn {
  width: 100%;
}
.grey-form .form-group input,
.grey-form .form-group textarea,
.grey-form .form-group .file-input-wrapper {
  width: 100%;
  background-color: rgba(81, 81, 81, 0.3607843137);
  border: 0.6px solid var(--gold-color);
  padding: 0.875rem 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 3.125rem;
  outline: none;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .grey-form .form-group input,
  .grey-form .form-group textarea,
  .grey-form .form-group .file-input-wrapper {
    font-size: 1rem;
    padding: 0.875rem;
  }
}
.grey-form .form-group input::-moz-placeholder, .grey-form .form-group textarea::-moz-placeholder, .grey-form .form-group .file-input-wrapper::-moz-placeholder {
  color: #fff;
}
.grey-form .form-group input::placeholder,
.grey-form .form-group textarea::placeholder,
.grey-form .form-group .file-input-wrapper::placeholder {
  color: #fff;
}
.grey-form .form-group textarea {
  border-radius: 0.875rem;
  resize: none;
}
.grey-form .form-group .error {
  display: none;
  font-size: 0.875rem;
  color: #ff4d4f;
  margin-top: 0.3125rem;
  margin-inline: 1.5625rem;
}
.grey-form .form-group.show-error .error {
  display: block;
}
.grey-form .form-grpup-alignment {
  padding-inline-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .grey-form .form-grpup-alignment {
    padding-inline-start: 0.875rem;
  }
}
.grey-form .form-radios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .grey-form .form-radios-container {
    flex-direction: column;
  }
}
.grey-form .top-radio-label {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .grey-form .top-radio-label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.grey-form .custom-radio {
  position: relative;
  padding-inline-start: 1.8125rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.grey-form .custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.grey-form .custom-radio input:checked ~ .custom-radio-rectangular:after {
  display: block;
}
.grey-form .custom-radio .custom-radio-rectangular {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.375rem;
  width: 1.375rem;
  background-color: transparent;
  border: 1px solid var(--gold-color);
  border-radius: 0.25rem;
}
.grey-form .custom-radio .custom-radio-rectangular::after {
  content: "";
  position: absolute;
  display: none;
  inset: 2px;
  border-radius: 0.25rem;
  background: var(--gold-color);
}
.grey-form .custom-radio .custom-radio-label {
  color: #fff;
}

.contact-us-form {
  max-width: 68.125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact-us-form {
    margin-top: 1.25rem;
  }
}

.apply-form {
  max-width: 68.125rem;
}

.follow-us-section {
  display: none !important;
}

.follow-us-section .main-heading {
  text-align: start;
}

.job-title {
  font-size: 2.8125rem;
  color: #fff;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .job-title {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .job-title {
    font-size: 1.875rem;
  }
}
.job-title .colored {
  color: var(--gold-color);
}

.job-desc-items {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1400px) {
  .job-desc-items {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .job-desc-items {
    margin-bottom: 1.25rem;
  }
}

.job-desc-item {
  font-weight: 300;
  font-size: 1.4375rem;
  color: #fff;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 1400px) {
  .job-desc-item {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .job-desc-item {
    font-size: 1.125rem;
  }
}
.job-desc-item .colored {
  color: var(--gold-color);
}

.job-desc-paragraph:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1400px) {
  .job-desc-paragraph:not(:last-child) {
    margin-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .job-desc-paragraph:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
}
.job-desc-paragraph .heading {
  font-weight: 300;
  font-size: 1.5625rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .job-desc-paragraph .heading {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .job-desc-paragraph .heading {
    font-size: 1.25rem;
  }
}
.job-desc-paragraph .desc {
  font-weight: 300;
  font-size: 1.4375rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .job-desc-paragraph .desc {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .job-desc-paragraph .desc {
    font-size: 1.125rem;
  }
}
.job-desc-paragraph .desc ul {
  list-style-type: disc;
  padding-inline-start: 1.3em;
}

.file-input-wrapper {
  position: relative;
}
.file-input-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-input-wrapper .file-placeholder {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.25;
}

.careers-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8125rem;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .careers-boxes {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .careers-boxes {
    gap: 1rem;
  }
}
.careers-boxes .careers-box {
  width: calc(25% - 2.109375rem);
}
@media screen and (max-width: 1400px) {
  .careers-boxes .careers-box {
    width: calc(33.3333% - 1.25rem);
  }
}
@media screen and (max-width: 767px) {
  .careers-boxes .careers-box {
    width: 100%;
  }
}
.careers-boxes .careers-box .careers-box-wrapper {
  padding-block: 3.75rem;
  padding-inline: 1.5rem;
  height: 100%;
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .careers-boxes .careers-box .careers-box-wrapper {
    padding: 1.25rem;
  }
}
.careers-boxes .careers-box .heading {
  font-size: 1.875rem;
  color: var(--gold-color);
  padding-inline-end: 0.625rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 1400px) {
  .careers-boxes .careers-box .heading {
    margin-bottom: 1.25rem;
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .careers-boxes .careers-box .heading {
    margin-bottom: 0.875rem;
    font-size: 1.5rem;
    padding-inline-end: 0px;
  }
}
.careers-boxes .careers-box .desc {
  font-size: 1.375rem;
  font-weight: 300;
  color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .careers-boxes .careers-box .desc {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .careers-boxes .careers-box .desc {
    font-size: 1.125rem;
  }
}

.open-positions-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .open-positions-boxes {
    gap: 1rem;
  }
}

.open-positions-box {
  gap: 1.5rem;
}
.open-positions-box .open-positions-box-wrapper {
  padding-block: 2.1875rem;
  padding-inline: 1.5rem;
  height: 100%;
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .open-positions-box .open-positions-box-wrapper {
    padding: 1.25rem;
  }
}
.open-positions-box .heading {
  font-size: 1.4375rem;
  color: var(--gold-color);
  margin-bottom: 1.6875rem;
}
@media screen and (max-width: 1400px) {
  .open-positions-box .heading {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .open-positions-box .heading {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }
}
.open-positions-box .info {
  font-size: 1.375rem;
  font-weight: 300;
  color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .open-positions-box .info {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .open-positions-box .info {
    font-size: 1.125rem;
  }
}

.positions-setails-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .positions-setails-items {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .positions-setails-items {
    margin-bottom: 0.875rem;
  }
}

.positions-setails-item {
  display: flex;
  gap: 0.625rem;
}
.positions-setails-item span {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .positions-setails-item span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .positions-setails-item span {
    font-size: 1rem;
  }
}

.search-header {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  flex-direction: wrap;
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1400px) {
  .search-header {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .search-header {
    font-size: 1.125rem;
  }
}
.search-header .colored {
  color: var(--gold-color);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1400px) {
  .search-results {
    margin-bottom: 1.25rem;
  }
}

.search-results-box {
  display: block;
  width: 100%;
}
.search-results-box .search-results-box-wrapper {
  padding: 1.8125rem 4.8125rem;
  font-weight: 300;
  font-size: 1.1875rem;
  color: #fff;
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 1400px) {
  .search-results-box .search-results-box-wrapper {
    font-size: 1rem;
    padding: 1.25rem;
  }
}

.error-page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 1.875rem;
  height: 66vh;
}
.error-page-content .page-not-found {
  font-size: 3.75rem;
}
@media screen and (max-width: 1400px) {
  .error-page-content .page-not-found {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .error-page-content .page-not-found {
    font-size: 1.5rem;
  }
}
.error-page-content .error-code {
  font-size: 16.25rem;
  color: var(--gold-color);
  line-height: 1.1;
}
@media screen and (max-width: 1400px) {
  .error-page-content .error-code {
    font-size: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .error-page-content .error-code {
    font-size: 7.5rem;
  }
}
.error-page-content .error-meassage {
  font-size: 1.9375rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .error-page-content .error-meassage {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .error-page-content .error-meassage {
    font-size: 1.375rem;
  }
}

.find-us-box {
  display: flex;
  gap: 2.8125rem;
  padding: 1.25rem;
  background-color: rgba(71, 71, 71, 0.4901960784);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
}
@media screen and (max-width: 992px) {
  .find-us-box {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.75rem;
  }
}
.find-us-box .right,
.find-us-box .left {
  width: 100%;
  height: auto;
}
.find-us-box #find-up-map {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0.875rem;
}
@media screen and (max-width: 992px) {
  .find-us-box #find-up-map {
    height: 32vh;
  }
}

.locations-wrapper {
  max-height: 30rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-color) rgba(255, 255, 255, 0.1294117647);
  direction: rtl;
  padding-inline-end: 1.25rem;
}
@media screen and (max-width: 992px) {
  .locations-wrapper {
    max-height: 32vh;
    padding-inline-end: 0px;
  }
}
.locations-wrapper::-webkit-scrollbar {
  width: 0.625rem;
}
.locations-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1294117647);
  border-radius: 0.3125rem;
}
.locations-wrapper::-webkit-scrollbar-thumb {
  background: var(--gold-color);
  border-radius: 0.3125rem;
}
.locations-wrapper::-webkit-scrollbar-thumb:hover {
  background: ar(--gold-color);
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  direction: ltr;
}

.location-item {
  width: 100%;
  background-color: rgba(81, 81, 81, 0.3607843137);
  padding: 0.625rem 2.375rem;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.location-item.active {
  border: 1px solid var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .location-item {
    padding: 0.625rem 1.25rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .location-item {
    padding: 0.625rem;
    gap: 0.5rem;
  }
}
.location-item .location-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-color);
}
@media screen and (max-width: 1400px) {
  .location-item .location-name {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .location-item .location-name {
    font-size: 1rem;
  }
}
.location-item .location-city {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .location-item .location-city {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .location-item .location-city {
    font-size: 1rem;
  }
}

.popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  pointer-events: auto;
  background: linear-gradient(279.31deg, #021532 29.29%, #000000 171.8%);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  box-shadow: 0px 0.25rem 0.25rem 0px rgba(0, 0, 0, 0.2509803922);
  padding: 4.375rem 7.5rem 2.875rem;
  border-radius: 0.875rem;
  gap: 3.5625rem;
}
@media screen and (max-width: 1400px) {
  .popup-content {
    padding: 4.375rem 5rem 2.5rem;
    gap: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .popup-content {
    padding: 2.5rem 0.9375rem 0.9375rem;
    gap: 1rem;
  }
}
.popup-content .main-heading {
  margin-bottom: 0px;
}
.popup-content .popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .popup-content .popup-close {
    top: 0.75rem;
    right: 0.9375rem;
    scale: 0.8;
  }
}

.popup-body {
  font-weight: 300;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .popup-body {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .popup-body {
    margin-bottom: 0px;
    font-size: 1rem;
  }
}

.gold-link {
  color: var(--gold-color);
}

.text-align-start {
  text-align: start;
}

.inner-services-box,
.offerings-box .box-wrapper,
.privileges-box,
.gold-bordered-box .box-wrapper,
.inner-banner-content .heading,
.board-committees-card-wrapper .card-body,
.board-committees-card .board-committees-card-wrapper .card-img,
.fact-sheet-document .fact-sheet-document-container,
.article .article-container,
.inner-banner-content .inner-banner-img img {
  transition: 0.3s all ease-in;
}

.inner-services-box:hover,
.privileges-box:hover,
.article:hover .article-container,
.board-committees-card:hover .board-committees-card-wrapper .card-body,
.fact-sheet-document:hover .fact-sheet-document-container,
.gold-bordered-box .box-wrapper:hover {
  box-shadow: inset 0 0 20px 0 var(--gold-color);
}

.offerings-box .box-wrapper:hover {
  translate: 0 -10px;
}

.news-card .card-img {
  overflow: hidden;
}

.news-card .card-img img {
  transition: 0.3s all ease-in;
}

.news-card:hover .card-img img {
  scale: 1.1;
}

.inner-banner-content:hover .inner-banner-img img {
  scale: 1.05;
}

.inner-banner-content:hover .heading {
  text-shadow: 0 0 10px var(--gold-color);
}

.inner-page-content {
  z-index: 1;
}

.golden-strike {
  position: fixed;
  width: 2207.0710152121px;
  height: 964.9466422841px;
  top: 50%;
  left: 50%;
  rotate: 30deg;
  translate: -50% -50%;
  opacity: 0.2;
  mix-blend-mode: Lighten;
  z-index: -1;
}

.golden-strike.golden-strike-2 {
  rotate: 0deg;
  width: 100vw;
  height: 938px;
}

.golden-strike img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blurred-box-content .info {
  font-weight: 300;
}

.inner-banner-content:has(.custom-left) {
  align-items: flex-start;
}

.inner-banner-content:has(.custom-left) .custom-left {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 852px;
  width: 60%;
  margin-top: 60px;
}

.inner-banner-content:has(.custom-left) .custom-left .blurred-box {
  padding-block: 52px;
}

.inner-banner-content:has(.custom-left) .custom-left .blurred-box-content .info {
  max-width: 700px;
}

.blurred-box-content .info a {
  transition: 0.2s color ease-in;
}

.blurred-box-content .info a:hover {
  color: var(--gold-color);
}

@media screen and (max-width: 1300px) {
  .inner-banner-content:has(.custom-left) {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .inner-banner-content:has(.custom-left) .custom-left {
    width: 100%;
    max-width: 100%;
    gap: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    padding-bottom: 1.25rem;
  }
}
.eligible-card .card-img img {
  transition: scale 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, filter;
}

.eligible-card:hover .card-img img {
  scale: 1.1;
  filter: drop-shadow(0 8px 24px rgba(175, 150, 110, 0.25)) brightness(1.1);
}

:is(.news, .insights) .heading-with-button {
  position: relative;
  justify-content: center;
  padding-inline: 120px;
}

:is(.news, .insights) .heading-with-button span {
  text-align: center;
}

@media (max-width: 558px) {
  :is(.news, .insights) .heading-with-button {
    padding-inline: 0 90px;
  }
}
:is(.news, .insights) .heading-with-button .golden-btn {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}

.global-table td {
  font-weight: 700;
}

.news-details .news-slider {
  padding-bottom: 40px;
}

.news-details .news-slider .swiper-pagination-bullet {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  outline: 1px solid transparent;
  outline-offset: 0.1875rem;
  opacity: 0.5;
  background-color: var(--gold-color);
  transition: all 0.4s ease;
}
.news-details .news-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline-color: var(--gold-color);
  opacity: 1;
}

.dropdown-menu {
  --bs-dropdown-bg:#af966e;
  --bs-dropdown-color:white;
  --bs-dropdown-link-color:white;
  --bs-dropdown-link-hover-color:white;
  --bs-dropdown-link-hover-bg:transparent;
}

.header .right-side .dropdown-item:hover {
  color: #af966e;
  background-color: #FFF;
}

.Filings-table {
  font-size: 1rem;
}

.search-results-box .search-results-box-wrapper {
  overflow: hidden;
}
.search-results-box .search-results-box-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: color 0.5s ease, opacity 0.5s ease;
  background-color: rgb(2, 29, 73);
  opacity: 0;
}
.search-results-box .search-results-box-wrapper:hover::before {
  opacity: 1;
}

.header .header-content .nav-items .dropdown-toggle::after {
  width: 12px;
  height: 8px;
  background: url(../../img/log-in-icon.svg) no-repeat center center;
  border: none;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 81.25rem) {
  .header .header-content .nav-items {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .header .nav-items .nav-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .search-overlay .search-box {
    padding: 2rem 1.2rem;
    max-width: 100%;
    gap: 1.875rem;
  }
  .banner-slider .banner-slide {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
  }
  .banner-slide-content {
    padding-top: 0;
  }
  .banner-slide .banner-img-bg {
    position: static;
  }
  .banner-fixed-content {
    padding-top: 64px;
  }
  .slider-navigation.banner-slider-navigation {
    display: flex;
    bottom: 19rem;
    left: 0;
    right: 0;
  }
  .banner-fixed-content .banner-slider-pagination {
    bottom: 22rem;
    top: auto;
  }
}
.eligible-cards .eligible-card {
  flex: 1 1 200px;
  max-width: 350px;
}

.services-card .heading {
  font-size: 1.65rem;
}

.swiper-slide.banner-card {
  position: relative;
}

.swiper-slide.banner-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.services-cards .services-card .services-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.services-cards .services-card .services-card-content .golden-btn {
  margin-top: auto;
}

.golden-btn {
  transition: 0.3s background ease-in-out;
}

.golden-btn:hover {
  background: #C8A977;
}

.header .nav-items {
  gap: 1.4rem;
}

@media (max-width: 1500px) {
  .header .header-content .logo img {
    max-width: 200px;
  }
  .header .header-content .right-side {
    gap: 1rem;
  }
  .header .nav-items .nav-item > a {
    font-size: 0.95rem;
  }
}
.page-container .banner-slide-content-wrapper {
  max-width: 60%;
}

@media (max-width: 1400px) {
  .page-container .banner-slide-content-wrapper {
    max-width: 100%;
  }
}
.book-services-item:hover {
  box-shadow: inset 0 0 20px 0 var(--gold-color);
}

.book-services-item:hover a:hover {
  color: #50493e;
}

.board-committees-card:hover .board-committees-card-wrapper .card-img {
  width: 100%;
}

.BOD-card .BOD-card-wrapper,
.BOD-card .card-img img {
  transition: 0.3s all ease-in-out;
}

.BOD-card.swiper-slide-active .BOD-card-wrapper,
.BOD-card:hover .BOD-card-wrapper {
  box-shadow: inset 0 0 10px rgba(200, 169, 119, 0.5607843137);
}

.BOD-card.swiper-slide-active .card-img img,
.BOD-card:hover .card-img img {
  scale: 1.1;
}

.papagination-items .papagination-item a {
  font-size: 1.6875rem;
  color: #50493e;
  cursor: pointer;
}

.papagination-items .papagination-item.active a {
  color: var(--gold-color);
  font-size: 2.125rem;
}

.key-strengths-boxes {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.key-strengths-box {
  width: calc(50% - 1.5rem);
}

@media screen and (max-width: 767px) {
  .key-strengths-boxes {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .key-strengths-box {
    width: 100%;
  }
}
.key-strengths-box .box-wrapper {
  display: grid; /* stack both faces */
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border: 0.5px solid var(--gold-color);
  border-radius: 0.875rem;
}

.key-strengths-box .card-face {
  grid-area: 1/1;
  backface-visibility: hidden;
  padding: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.875rem;
}

.key-strengths-box .card-back {
  transform: rotateY(180deg);
}

.key-strengths-box .card-back,
.key-strengths-box .card-front {
  border-radius: 0.875rem;
  background-color: rgba(18, 18, 18, 0.0117647059);
}

.key-strengths-box .heading {
  font-size: 1.6875rem;
  color: var(--gold-color);
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .key-strengths-box .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .key-strengths-box .heading {
    font-size: 1.25rem;
  }
}
.key-strengths-box .desc {
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .key-strengths-box .desc {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .key-strengths-box .desc {
    font-size: 1rem;
  }
}
li.dropdown.dropend a::after {
  transition: 0.3s all ease-in-out !important;
}

li.dropdown.dropend:hover > a::after {
  rotate: -90deg;
}

.news-page .heading-with-buttons .right-buttons .dropdown-toggle::after {
  width: 12px;
  height: 20px;
  background: url(../../img/arrow-dropdown.svg) no-repeat center center;
  background-size: 14px;
  border: none;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.news-page .heading-with-buttons .right-buttons .dropdown-toggle:hover::after {
  filter: brightness(10);
}

.news-page .heading-with-buttons .right-buttons .dropdown-menu {
  text-align: center;
}

.news-card .heading a {
  color: var(--gold-color);
}

.Whistleblowing-content .main-info a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease-out;
}

.Whistleblowing-content .main-info a:hover {
  color: var(--gold-color);
}

.Whistleblowing-content .contact-us-form textarea::-moz-placeholder, .Whistleblowing-content .contact-us-form input::-moz-placeholder {
  font-weight: 300;
}

.Whistleblowing-content .contact-us-form textarea::placeholder,
.Whistleblowing-content .contact-us-form input::placeholder {
  font-weight: 300;
}

.privileges-box .desc a,
.offerings-box .desc a,
.inner-services-box .desc a,
.insights-card .insights-card-wrapper .desc a {
  color: #FFF;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}

.privileges-box .desc a:hover,
.offerings-box .desc a:hover,
.inner-services-box .desc a:hover,
.insights-card .insights-card-wrapper .desc a:hover {
  color: var(--gold-color);
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

.inner-banner .inner-banner-img {
  display: none;
}

.news-details .news-slider .swiper {
  padding-bottom: 20px;
}

footer.footer {
  z-index: 10;
}

@media screen and (max-width: 448px) {
  .full-circle .outer-sector {
    font-size: 15px;
  }
  .dropdown-menu {
    font-size: 12px;
  }
}
.investor-relations-wrapper .reports-chart-container img {
  width: 100%;
}

.fact-sheet-years-tabs-container,
.fact-sheet-years-tabs-container .swiper {
  width: -moz-fit-content;
  width: fit-content;
}

.fact-sheet-years-tab {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.heading-with-buttons .right-buttons {
  align-items: center;
}

.news-card .heading {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-golden-btn {
  transition: 0.3s background ease-in-out;
}

.full-golden-btn {
  background: var(--gold-color);
}

.full-golden-btn:hover {
  background: transparent;
  background-size: 100% 100%;
}

.find-us-box #find-up-map {
  min-height: 400px;
}

.asset-management-services-box .card-inner {
  height: 100%;
}

.asset-management-services-box:hover .card-inner:not(:has(.desc)) {
  transform: rotateY(0deg) !important;
}

@media (max-width: 778px) {
  .header .header-content .logo img {
    max-height: 40px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 448px) {
  .header .header-content .logo {
    max-width: 60px;
  }
  .header .header-content .logo img {
    width: 100%;
  }
}
.normal-link {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease-out;
}
.normal-link:hover {
  color: var(--gold-color);
}

.normal-table.global-table th:first-child, .normal-table.global-table td:first-child {
  width: auto;
}

.full-news-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5625rem;
  margin-bottom: 3.75rem;
}
.full-news-cards .news-card {
  flex: 1 1 calc(33.3333% - 1.5625rem);
  max-width: calc(33.3333% - 1.5625rem);
}
@media (max-width: 1200px) {
  .full-news-cards .news-card {
    flex: 1 1 calc(50% - 1.5625rem);
    max-width: calc(50% - 1.5625rem);
  }
}
@media (max-width: 778px) {
  .full-news-cards .news-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

footer .footer-content .center {
  flex: 1 1 auto;
  text-wrap: nowrap;
}

footer .footer-content .center ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

footer .footer-content .center ul a {
  position: relative;
  color: #FFF;
  transition: 0.3s all ease-in-out;
}

footer .footer-content .center ul li:not(:first-child) a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 1px;
  height: 100%;
  background: white;
  border-radius: 8px;
  transform: translateY(-50%);
}

footer .footer-content .center ul a:hover {
  color: var(--gold-color);
}

@media (max-width: 778px) {
  footer .footer-content .center {
    flex: 1 1 100%;
  }
  footer .footer-content .center ul {
    justify-content: center;
  }
}
.investor-relations-page {
  padding: 0;
  margin-block: 64px;
}
.investor-relations-page .page-container {
  padding: 0;
}

.investor-contact-us {
  text-align: start;
  align-items: flex-start;
}

.content-contact-us {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  max-width: 852px;
}

@media (max-width: 558px) {
  :root {
    --margin-around-header-content:2rem;
    --page-container:2rem;
  }
}
.dropdown.login-mobile {
  display: none;
}

.custom-services .key-strengths-box {
  width: calc(33% - 1.5rem);
}
.custom-services .key-strengths-box .box-wrapper {
  border: 0.5px solid #AF966E;
  -webkit-backdrop-filter: blur(40.5px);
          backdrop-filter: blur(40.5px);
}
.custom-services .key-strengths-box .box-wrapper .desc {
  color: #C8A977;
  font-size: clamp(18px, 2.4vw, 27px);
}

.table-list {
  list-style: disc;
  padding: 0 0px 0px 20px;
  margin: 0;
}

@media (max-width: 778px) {
  .search-overlay .search-header > img {
    width: 10rem;
  }
  .search-overlay .search-input-box .full-golden-btn {
    padding: 6px 10px;
  }
  .search-overlay .search-input-box input {
    min-width: 60px;
  }
  .header .header-content .right-side .dropdown:has(.log-in-btn) {
    display: none;
  }
  .header .header-content .nav-items {
    max-width: 100%;
  }
  .dropdown.login-mobile {
    display: flex;
  }
  .dropdown.login-mobile .log-in-btn {
    padding: 6px 12px;
  }
}/*# sourceMappingURL=main.css.map */