/*
green color: #39a671, hsl(151, 66%, 61%);
#33333: hsl(0, 0%, 20%);
blue: #01236a, hsl(221, 98%, 21%);
grey : hsl(0, 0%, 43%);
*/
:root {
  --color-blue: hsl(221, 99%, 16%);
  /*--color-green: hsl(151, 48.9%, 43.7%);*/
  --color-green: #39a671;
  --title-blue: hsl(221, 98.1%, 21.0%); /* #01236a */
  --body-color: hsl(0, 0.0%, 40.0%); /* #666666 */
  --color-white: hsl(0, 0%, 100%);
  --color-grey: hsl(0, 0%, 43%);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  color: var(--body-color);
}
h1, .h1 {
  font-weight: 700;
  font-size: 2.188rem; /*35px */
  color:hsl(0, 0%, 100%);
  margin-bottom: 20px;
}
h2, .h2 {
  font-size: 1.25rem; /*20px */
  font-weight: 400;
  color: var(--color-blue);
  margin-bottom: 20px;
}
h3, .h3 {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-blue);
}
h4, .h4 {
  font-size: 1.125rem;
  font-weight: 700;
}
.table>:not(caption)>*>* {
  padding: 1rem 1rem;
  border-bottom: transparent;
}
.t14 {
  font-size: 0.875rem; /* 14px */
}
a, a:hover {
  color: hsl(221, 63%, 51%);
  text-decoration: none;
}
p {
  color: var(--body-color);
}
.pt-5rem {
  padding-top: 5rem !important;
}
.footnote {
  font-size: 0.75rem;
  color: hsl(0, 0%, 63%)
}
.bg-lightgrey {
  background-color: hsl(0, 0.0%, 98.0%);
}
.btn {
  font-weight: 700;
  padding: 0.875rem 4rem;
  border: none;
  border-radius: 0.75rem;
}
.btn-primary, .btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.body-color {
  color: var(--body-color);
}
.title-blue {
  color: var(--title-blue);
}

ul.bullet-blue {
  list-style: none !important;
}
ul.bullet-blue li::before {
  content: "\2022";
  color: var(--color-blue); 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  margin-left: -1em; 
}

.Max-1600 {
  max-width: 1600px;
}

.responsive {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  /*padding: 15px 0;*/
  border-bottom: 3px solid  var(--color-green);;
}
#header.header-scrolled, #header.header-inner-pages {
  background: hsl(0, 0%, 100%);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: hsl(0, 0%, 100%)
}
#header .logo img {
  max-height: 50px;
}
#header.header-scrolled {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 997;
}
@media (max-width: 991px) {
  #header {
    padding: 15px 0;
    max-width: 100vw;
  }  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li.active > a {
  font-weight: 700;
}
a.nav-link {
  color: hsl(0, 0%, 20%);
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0 25px 30px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  text-decoration: none;
  color: hsl(0, 0%, 20%);
}
.navbar a i, .navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: hsl(221, 98%, 21%);  
  font-weight: 700;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 24px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: hsl(120, 100%, 13.3%); /* #004400 */
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: hsl(120, 100%, 13.3%);
  background-color: hsl(0, 0%, 90%); /* #e1e1e1 */
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: calc(100% + 4px);
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: 90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: 100%;
  }

}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {  
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
li.dropdown > a i {
  display: none;
}

@media (max-width: 991px) {
  .mobile-nav-toggle,
  li.dropdown > a i {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .dropdown-active li {
    visibility: visible;
  }
  .navbar {
    padding: 10px;
  }
  .navbar-mobile {
    width: 100vw;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: hsl(221, 98%, 21%);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #004400;
  background-color: hsl(0, 0%, 90%); /* #e1e1e1 */
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* banner */
ul.bannerSlider{
  padding-left:0;
  margin-bottom: 0 !important;
}
.bannerSlider{
	height: 650px;
}
.bannerSlider .slide__image::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 650px;
	/*background: rgba(33,33,33,.7);*/
}
.bannerSlider .slick-slide {
	position: relative;
}
.bannerSlider .slide__image img {
	width: 100%;
	height: 650px;
	object-fit:cover;
}
img.slide__image__top-position {
	object-position:center bottom;
}
.bannerSlider .slide__text {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 85%;
  	transform: translateY(-50%);
}
.bannerSlider .slide__text h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #fff;
  text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 3px 0px 4px rgba(49,21,13,0.78);
}
.slick-dots {
  bottom: 20px;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  padding: 3px;
  cursor: pointer;
  outline: none;
}

.slick-dots li button::before {
  font-size: 0px;
  width: 5px;
  height: 5px;
  color: transparent;
  opacity: 1;
}

.slick-active button {
  background: hsl(0, 0%, 100%) !important;
  color: hsl(0, 0%, 100%) !important;
}

.subpage-banner {
  height: 480px;
  width: 100%;
  background: url('/images/img-sub-banner-wisma-atria-property-jan25.jpg') center center no-repeat;
  background-size: cover;
}
.subpage-banner.about {
  background: url('/images/img-sub-banner-about-us-may25.jpg') center center no-repeat;
  background-size: cover;
}
.subpage-banner.management {
  background: url('/images/img-sub-banner-wisma-atria-property-jan25.jpg') center center no-repeat;
  background-size: cover;
}
.subpage-banner.portfolio {
  background: url('/images/img-sub-banner-portfolio-overview.jpg') center center no-repeat;
  background-size: cover;
}
#wisma-atria .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-wisma-atria-property-jan25.jpg') center center no-repeat;
  background-size: cover;
}
#ngee-ann-city .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-ngee-ann-city-may25.jpg') center center no-repeat;
  background-size: cover;
}
#the-starhill .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-the-starhill-may25.jpg') center center no-repeat;
  background-size: cover;
}
#lot-10 .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-lot-10-property-may25.jpg') center center no-repeat;
  background-size: cover;
}
#myer-centre-adelaide .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-myer-centre-adelaide.jpg') center center no-repeat;
  background-size: cover;
}
#david-jones-building .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-david-jones-building-may25.jpg') center center no-repeat;
  background-size: cover;
}
#daikanyama .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-daikanyama.jpg') center center no-repeat;
  background-size: cover;
}
#ebisu-fort .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-ebisu-fort.jpg') center center no-repeat;
  background-size: cover;
}
#plaza-arcade .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-plaza-arcade-may25.jpg') center center no-repeat;
  background-size: cover;
}
#china-property .subpage-banner.portfolio {
  background: url('/images/img-sub-banner-china-property.jpg') center center no-repeat;
  background-size: cover;
}

.subpage-banner.contact-us {
  background: url('/images/img-sub-banner-contact-us-may25.jpg') center center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .subpage-banner {
    height: 250px;
  }
}

/* search */
#header.searchbar-hover {
  position: relative;
}
.searchbar:hover,
#header.searchbar-hover .navbar {
  position: initial;
}
.searchbar-info {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  margin: -4px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  width: 0px;
}
.navbar .searchbar i {
  line-height: 1.5;
}
#header.searchbar-hover .searchbar-info {
  opacity: 1;
  top: 100%;
  visibility: visible;
  width: auto;
  margin-top: 3px;
}
.searchbar-info .inner {
  background-color: hsl(0, 0%, 100%);
  width: 100%;  
}
#global-search {
  display: none;
}
#header.searchbar-hover #global-search {
  display: block;
}
.searchbar.mobile {
  display: none;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .searchbar.mobile {
    display: block;
  }
  li.searchbar {
    display: none;
  }
  .searchbar-info {
    margin: 0px;
  }
}


/*  form  */
.search-info {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 75px;
  padding: 0 10px;
}

form .ss-input {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
form .ss-button {
  display: table-cell;
  vertical-align: top;
}
form .ss-input input {
  font-family: Neris,Arial,sans-serif;
  line-height: 1.4;
  font-size: 15px;
  padding: 16px 15px;
  color: #292929;
  border: 1px solid #CCC;
  width: 100%;
  height: 46px;
  text-indent: 0 !important;
  float: left;
}
form .ss-input input {
  color: #292929;
  background-color: transparent !important;
  border: 0;
  font-size: 20px;
  padding: 5px 28px;
  height: auto;
  line-height: 1.5;
}
form .ss-button input {
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  outline: 0;
  color: #FFF;
  background-color: #001f53;
  border: 2px solid #001f53;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  width: 100%;
  margin: 0;
  border-radius: 0;
  height: 46px;
  padding: 14px 16px;
  cursor: pointer;
}
form .ss-button input {
  padding: 0 30px;
  height: 40px;
}


/* home */
.news-item a {
  text-overflow:ellipsis;
  overflow:hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: hsl(0, 0%, 43%);
}
#ir_latest_news a:hover {
  color: var(--color-blue);
}

@media (min-width: 992px) {
  .stockInfo-wrap {
    position: absolute;
    z-index: 1;
    bottom: 100%;
  }
}
@media (max-width: 991px) {
  .home-stock-wrap .container {
    max-width: 100%;
    padding: 0;
  }
  #home-stockInfo {
    text-align: center;
  }
  #home-stockInfo table {
    text-align: center;
    margin: 0 auto;
  }
  .stockInfo-wrap {
    position: relative;
    text-align: center;
  }
  section.home-stock-wrap .row {
    margin: 0px;
  }
  section.home-stock-wrap .row > div {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.stockInfo-wrap h4 {
  padding: 10px 20px;
  background-color: hsl(221, 98%, 21%);
  color: hsl(0, 0%, 100%);
  margin-bottom: 0px;
}
#home-stockInfo {
  background-color: hsl(60, 1%, 92%);
  padding: 20px;
}
#home-stockInfo .stockQuote {
  font-size: 1.5rem;
  color: hsl(149, 58.6%, 34.1%); /* 268a55 */
  padding-right: 10px;
}
#home-stockInfo .stockUp {
  font-size: 1rem;
  color: hsl(0, 0%, 43%);
  padding-right: 5px;
}
#home-stockInfo .stockPercentage {
  font-size: 1rem;
  color: hsl(0, 0%, 43%);
  padding-right: 5px;
}
#home-stockInfo .stockUpdated {
  color: hsl(0, 0%, 43%);
  display: block;
  font-size: 0.75rem;
}

#home-stockInfo table td:first-child {
  font-size: 0.75rem;
  color: hsl(0, 0%, 43%);
}
#home-stockInfo .fas {
  color: hsl(149, 58.6%, 34.1%); /* 268a55 */
  padding-right: 5px;
  font-size: 1rem;
}
#home-stockInfo .fas.fa-caret-down {
  color: hsl(0, 100%, 34%);
}

.latest-news-wrap {
  padding: 20px;
}
.news-item {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.news-item .date {
  font-weight: 700;
  color: hsl(0, 0%, 33%);
  margin-bottom: 5px;
  display: block;
}
.news-link {
  color: hsl(221, 63%, 51%);
  font-weight: 700;
}
.news-link:hover {
  color: var(--color-blue);
}

.home-links-wrap img {
  display: block;
  margin: 0 auto 15px;
}
.home-links-wrap span {
  font-size: 1.25rem;
  color: hsl(221, 99%, 16%);
  text-align: center;
}
.home-links-wrap > div > div {
  min-height: 200px;
  background-color: hsl(0, 0%, 95%);
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
}
.home-resultLink a {
  display: flex;
  flex-direction: column;
}
.hover-grey:hover span {
  color: var(--body-color);
}

@media (min-width: 992px) {
  .latest-news-wrap {
    padding: 20px 20px;
  }
}

.corpInfo-wrap {
  margin-bottom: 20px;
}
.corpInfo-wrap h4 {
  font-weight: 400;
  text-transform: uppercase;
  background-color: hsl(0, 0.0%, 94.1%);
  padding: 10px 15px;
  color: var(--title-blue);
  margin-bottom: 0px;
}
.corpInfo-wrap address {
  color: var(--body-color);
  padding: 20px 15px;
  margin-bottom: 0px;
}
.corpInfo-item {
  padding: 20px 15px;
  color: var(--body-color);
}
.corpInfo-item span{
  display: block;
  padding-bottom: 20px;
}
.corpInfo-item span:last-child {
  padding-bottom: 0px;
}
.corpInfo-item i {
  font-size: 0.875rem;
}

#key-milestones h4 {
  color: var(--color-blue);
}

#governance .accordion-button {
  font-size: 1.125rem;
  text-transform: uppercase;
}


.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2301236a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button::after {
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
}
.accordion-button:focus {
  border: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--color-blue);
  box-shadow: none;
}


/* main ol li, main ul li {
  margin-bottom: 1rem;
}*/

/* main ol.footnote li {
  margin-bottom: 0.75rem;
} */

/* Portfolio */
.carousel-indicators {
  position: relative;
  margin-top: 20px;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-blue);
  opacity: 1;
  background-color: var(--color-white);
  border-radius: 50%;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--color-blue);
}

.portfolio table td:first-child {
  width: 212px;
}

@media screen and (max-width: 600px) {
  .portfolio table td:first-child {
    width: 125px;
  }
}

#image-map {
  position: relative;
}

#portfolio-overview map {
  position: relative;
}
.japan img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.hover-info {
  position: absolute;
  display: flex;
  align-items: flex-start;
}
.hover-info img.active {
  display: none;  
}
.hover-info.active img.active {
  display: block;  
}
.hover-info.active img.non-active {
  display: none;  
}
.hover-info > div {
  margin-top: -20px;
  padding-left: 10px;
}
.hover-info h2 {
  margin-bottom: 10px;
  color: var(--body-color);
}
.hover-info.active h2 {
  color: var(--color-blue);
}
.hover-info span {
  display: block;
  font-weight: 700;
}
.hover-info ul {
  list-style: none;
  white-space: nowrap;
}
.hover-info a {
  color: var(--body-color);
}
.hover-info a:hover {
  color: var(--color-blue);
}

.hover-info.japan {
  left: -102px;
  top: 80px;
}
.hover-info.china {
  left: -778px;
  top: 215px;
}
.hover-info.china img {
  margin-left: -45px;
}
.hover-info.malaysia {
  left: -718px;
  top: 448px;
}
.hover-info.singapore {
  left: -370px;
  top: 332px;
}
.hover-info.perth {
  left: -451px;
  top: 683px;
}

.hover-info.perth img {
  margin-left: -88px;
}
.hover-info.adelaide {
  left: -73px;
  top: 512px;
}

.property-card {
  position: relative;
}
.property-card .info {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: var(--color-white);
  width: 100%;
  padding: 10px;
}
.property-card h5 {
  font-weight: 700;
}
.property-card:hover .image {
  opacity: 0.3;
}

.property-card:hover .info, .property-card:hover .overlay {
  opacity: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
  right: 0;
  bottom: 0;
}
hr.style1 {
  max-width: 50px;
  text-align: center;
  margin: 15px auto;
}

.prop-summary-item .h1 {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.25rem;
}
.collapsing {
  transition: all .5s ease-in-out;
}

/* footer */
#footer {
  background-color: hsl(0, 0%, 40%); /* #666666 */
  color: 	hsl(0, 0%, 100%);
  font-size: 0.813rem;
}
#footer h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
#footer li {
  font-size: 0.813rem;
  color: 	hsl(0, 0%, 82%);
  line-height: 2;
}
#footer a {
  color: hsl(0, 0%, 82%);
}

.copyright p {
  color: 	hsl(0, 0%, 82%);
  font-size: 0.875rem;
}
.copyright a {
  color: 	hsl(0, 0%, 100%);
  text-decoration: none;
  padding: 0px 10px;
  font-size: 0.875rem;
}
.home-link .card .card-body {
  transition: all 0.6s;
}
.home-link .card h3 {
  font-size: 1.375rem;
  
}

.home-link .card:hover .card-body h3 {
  font-weight: 700;
}

.img-wrap {
  overflow: hidden;
}
.img-wrap img {
  transition: all 0.6s;
}

/* Management */

.bod-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  cursor: pointer;
}
.bod-item img {
  align-self: center;
}
.bod-item h5, .header-wrap h5 {
  color: var(--color-blue);
  margin-top: 30px;
  font-weight: 700;
}
.bod-item h5 span , .header-wrap h5 span {
  display: block;
  color: var(--body-color);
  font-weight: 400;
  font-size: 1rem;
  padding-top: 5px;
}
.header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.modal-content {
  position: relative;
  padding: 30px;
}
.modal-header {
  padding: 0 1rem 2rem 0;
}
.modal-body {
  padding: 2rem;
}
.modal-content .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
}
.text-justify {
  text-align: justify;
}
/* Executive Officers */
#executive-Officers .accordion-button,
#reit-manager .accordion-button {
  background: transparent;
  padding-bottom: 40px;
}
#executive-Officers img,
#reit-manager img {
  max-width: 170px;
}
#executive-Officers .accordion-item .accordion-body,
#reit-manager .accordion-item .accordion-body {
  padding-top: 0px !important;
}

/*Career */
.career-cards {
  background-color: hsl(0, 0%, 95%);
  padding: 30px 20px;
  height: 100%;
}
.cardItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cardItem h4 {
  font-weight: 400;
}

#contact-us .cardItem {
  /* justify-content: flex-start;
  align-items: flex-start; */
  text-align: center;
}

.iframe-wrap {
  position: relative;
  padding-bottom: 42%;
  height: 0;
  overflow: hidden;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Footer accordion */
#footer .accordion-item span {
  display: none;
}
#footer .accordion-item {
  background: transparent;
  border-bottom: 1px solid hsl(0, 0%, 82%);
}
#footer .accordion-item:last-child {
  border-bottom: none;
}
#footer .accordion-button {
  color: hsl(0, 0%, 100%);
  background-color: transparent;
  font-size: 0.875rem;
  border: none;
  box-shadow: none;
}
#footer .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
}
#footer .accordion-button,
#footer .accordion-body {
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 992px) {
  #footer h3 {
    margin-bottom: 20px;
    color: hsl(0, 0%, 100%);
  }
  #footer .accordion {
    display: flex;
    gap: 15px;
  }
  #footer .accordion-item {
    border: none;
    flex-grow: 1;
  }
  #footer .accordion-item span {
    display: block;
  }
  #footer .accordion-button {
    display: none;
  }
  #footer .accordion-collapse {
    display: block;
  }
  .accordion-body {
    padding: 0px;
  }
  .gx-lg-6 {
    --bs-gutter-x: 5rem;
  }
}

#back-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 9999;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

#back-to-top.show {
  opacity: 1;
}

.color-blue {
  color: var(--color-blue);
}


.milestones-wrap h2 {
  font-weight: 400;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}
.milestones-wrap hr {
  width: 100%;
}


@media (max-width: 991px) {
  .bannerSlider, .slick-slide {
    height: 450px;
  }
  .bannerSlider .slide__text {
    top: 80%;
  }
  .property-card h5 {
    font-size: 1rem;
  }
  hr.style1 {
    margin: 5px auto;
  }
  .property-card .info span {
    font-size: 0.825em;
    font-weight: 400;
  }
  .hover-info {
    transform: scale(0.5);
  }
  .hover-info.japan {
    left: -170px;
    top: 80px;
  }
  .hover-info.china {
    left: -664px;
    top: 215px;
  }
  .hover-info.malaysia {
    left: -637px;
    top: 448px;
  }
  .hover-info.singapore {
    left: -479px;
    top: 385px;
  }
  .hover-info.perth {
    left: -386px;
    top: 683px;
  }
  .hover-info.adelaide {
    left: -150px;
    top: 575px;
  }
  .hover-info.adelaide > div {
    margin-left: -30px;
    margin-top: -23px;
  }
}

@media (max-width: 767px) {
  .portfolio-map-wrap {
    display: none;
  }
}
