@font-face {
  font-family: "Garamond Premier Pro";
  src: url("https://centerhealthyminds.org/font/GaramondPremrPro.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Garamond Premier Pro";
  src: url("https://centerhealthyminds.org/font/GaramondPremrPro-It.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Garamond Premier Pro";
  src: url("https://centerhealthyminds.org/font/GaramondPremrPro-Smbd.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

html,
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
div,
label,
small,
strong,
em,
b,
i,
th,
td,
dt,
dd,
blockquote,
figcaption {
  font-family: "Garamond Premier Pro", "Garamond Premr Pro", serif !important;
}

code,
pre,
kbd,
samp,
tt {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fa-solid,
.fa-regular,
.fa-light,
.fa-duotone,
[class^="fa-"],
[class*=" fa-"] {
  font-family: "Font Awesome 5 Free" !important;
}

.fab,
.fa-brands {
  font-family: "Font Awesome 5 Brands" !important;
}

.home-internal-amenities {
  /* padding: 84px 0; */
  overflow: visible;
}

.home-internal-amenities .section-title {
  color: #003469;
  font-size: 32px;
  line-height: 1.25;
}

.home-internal-amenities .section-desc {
  color: #eb5137;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.internal-amenity-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 430px;
}

.home-internal-amenities .internal-amenity-map,
.home-internal-amenities .internal-map-panel,
.home-internal-amenities .internal-map-canvas {
  overflow: visible;
}

.internal-map-panel {
  display: none;
  position: relative;
  min-height: 430px;
}

.internal-map-panel.active {
  display: block;
}

.internal-map-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.internal-map-placeholder {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003469;
  font-weight: 700;
  background: repeating-linear-gradient(45deg, #edf5f1, #edf5f1 12px, #e4eee9 12px, #e4eee9 24px);
}

.internal-amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.internal-amenity-tab {
  border: 1px solid rgba(0, 52, 105, .16);
  border-radius: 999px;
  background: #fff;
  color: #003469;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all .25s ease;
}

.internal-amenity-tab:hover,
.internal-amenity-tab.active {
  background: #003469;
  border-color: #003469;
  color: #fff;
}

.internal-amenity-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
}

.internal-amenity-list.active {
  display: block;
}

.internal-amenity-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 52, 105, .08);
  cursor: pointer;
}

.internal-amenity-list li .num {
  min-width: 34px;
  color: #eb5137;
  font-weight: 800;
}

.internal-amenity-list li .name {
  color: #263642;
  font-weight: 600;
}

.internal-amenity-list li:hover .name,
.internal-amenity-list li.active .name {
  color: #003469;
}

.internal-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.internal-highlight-card {
  background: #fff;
  border: 1px solid rgba(0, 52, 105, .08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 52, 105, .06);
}

.internal-highlight-card .highlight-img {
  height: 130px;
  overflow: hidden;
}

.internal-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internal-highlight-card .highlight-body {
  padding: 16px;
}

.internal-highlight-card h3 {
  color: #003469;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.internal-highlight-card .highlight-body div {
  color: #667085;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .home-internal-amenities {
    /* padding: 58px 0; */
  }

  .internal-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .home-internal-amenities .section-title {
    /* font-size: 24px; */
  }

  .internal-amenity-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .internal-amenity-tab {
    flex: 0 0 auto;
  }

  .internal-amenity-map,
  .internal-map-panel,
  .internal-map-panel img,
  .internal-map-placeholder {
    min-height: 280px;
  }

  .internal-highlight-grid {
    grid-template-columns: 1fr;
  }
}

body.fh-loader-active {
  overflow: hidden;
}

#loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}

#loader-wrapper.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader-wrapper .fh-loader-logo {
  width: min(220px, 48vw);
  max-height: 140px;
  object-fit: contain;
  animation: fh-loader-pulse 1.35s ease-in-out infinite;
}

@keyframes fh-loader-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .9;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

.fh-amenities-source .fh-amenity-item.is-active .icon-utilitis {
  overflow: visible;
}

.fh-amenities-source .fh-amenity-item.is-active .icon-utilitis::before,
.fh-amenities-source .fh-amenity-item.is-active .icon-utilitis::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(169, 223, 237, .78);
  box-shadow: 0 0 18px rgba(74, 178, 205, .38);
  opacity: 0;
  pointer-events: none;
  animation: fh-amenity-water-ripple 2.4s ease-out infinite;
}

.fh-amenities-source .fh-amenity-item.is-active .icon-utilitis::after {
  animation-delay: 1.2s;
}

.fh-amenities-source .fh-amenity-item.is-active .icon-utilitis img {
  z-index: 1;
  border-radius: 50%;
}

@keyframes fh-amenity-water-ripple {
  0% {
    transform: scale(.82);
    opacity: 0;
  }
  24% {
    opacity: .55;
  }
  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  #sc-amenities.fh-amenities-source .fh-amenity-trigger::after {
    content: attr(data-title);
    left: 18px;
    right: 18px;
    bottom: 76px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  #sc-amenities.fh-amenities-source .fh-amenity-trigger::before {
    content: attr(data-content);
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: block;
    min-height: 44px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 575.98px) {
  #sc-amenities.fh-amenities-source .fh-amenity-trigger::after {
    bottom: 78px;
    font-size: 19px;
    line-height: 1.2;
  }

  #sc-amenities.fh-amenities-source .fh-amenity-trigger::before {
    font-size: 12px;
    line-height: 1.4;
  }
}

.hud-left-nav .hud-nav-item:hover .hud-nav-indicator {
  background-color: #d4af37;
  box-shadow: 0 0 18px rgba(212, 175, 55, .5);
}


.hud-left-nav .hud-nav-item:hover .hud-nav-label::before {
  content: attr(data-text);
}

#sc-floorplan.fh-floorplan-source {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#sc-floorplan.fh-floorplan-source.is-entering-from-bottom {
  align-items: flex-end;
}

#sc-floorplan.fh-floorplan-source .floorplan-overview {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#sc-floorplan.fh-floorplan-source.is-entering-from-bottom .floorplan-overview {
  align-items: flex-end;
}

#sc-floorplan.fh-floorplan-source .floorplan-overview-canvas {
  position: relative;
  display: inline-block;
  width: 100%;
  flex: 0 0 auto;
}

#sc-floorplan.fh-floorplan-source .floorplan-overview-canvas img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}

@media (min-width: 1200px) {
  #sc-floorplan.fh-floorplan-source .floorplan-overview-canvas {
    width: 100vw;
  }
}

@media (max-width: 991.98px) {
  #sc-floorplan.fh-floorplan-source {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 56px 0 44px;
  }

  #sc-floorplan.fh-floorplan-source.is-entering-from-bottom {
    align-items: flex-start;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-overview {
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
    padding: 0 14px;
  }

  #sc-floorplan.fh-floorplan-source.is-entering-from-bottom .floorplan-overview {
    align-items: flex-start;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-overview-canvas,
  #sc-floorplan.fh-floorplan-source .floorplan-overview-canvas img {
    width: 100%;
    height: auto;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-mobile-title {
    display: block;
    width: 100%;
    padding: 0 18px;
    margin: 0 0 22px;
    color: #233f3a;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  #sc-news .fh-news-tabs {
    width: calc(100vw - 32px);
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 8px 12px;
    padding: 0;
  }

  #sc-news .fh-news-tabs em {
    display: none;
  }

  #sc-news .fh-news-tabs button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

#sc-floorplan.fh-floorplan-source .floorplan-tower-badges {
  display: none;
}

#sc-floorplan.fh-floorplan-source .floorplan-tower-badge {
  display: none;
}

@media (max-width: 991.98px) {
  #sc-floorplan.fh-floorplan-source .floorplan-tower-badges {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    pointer-events: none;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge {
    position: absolute;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 2px solid #e8564a;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    overflow: visible;
    isolation: isolate;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge img {
    display: block;
    max-width: 56%;
    max-height: 56%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge-text {
    display: block;
    max-width: 72%;
    color: #e8564a;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge.is-active {
    transform: translate(-50%, -50%) scale(1.01);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge.is-active::before,
  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge.is-active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(232, 86, 74, 0.55);
    box-shadow: 0 0 18px rgba(232, 86, 74, 0.18);
    opacity: 0;
    pointer-events: none;
    animation: floorplan-tower-ripple 2.2s ease-out infinite;
  }

  #sc-floorplan.fh-floorplan-source .floorplan-tower-badge.is-active::after {
    animation-delay: 1.1s;
  }
}

@keyframes floorplan-tower-ripple {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  25% {
    opacity: 0.55;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  #sc-news.fh-news-source {
    padding: 44px 0 36px;
  }

  #sc-news.fh-news-source .fh-news-grid {
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  #sc-news.fh-news-source {
    padding: 34px 0 28px;
  }
}

#sc-contact.fh-contact-source {
  position: relative;
  overflow: hidden;
  padding-bottom: 76px;
}

#sc-contact.fh-contact-source .fh-contact-heading {
  padding-top: 64px;
}

#sc-contact.fh-contact-source .fh-contact-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 2.3vw, 39px);
}

#sc-contact.fh-contact-source .fh-contact-heading img {
  max-height: 92px;
}

#sc-contact.fh-contact-source .fh-contact-content {
  margin-top: 30px;
  gap: 44px;
}

#sc-contact.fh-contact-source .fh-contact-info {
  padding-right: 38px;
}

#sc-contact.fh-contact-source h3 {
  margin-bottom: 16px;
  font-size: 23px;
}

#sc-contact.fh-contact-source p {
  margin-bottom: 12px;
  font-size: 17px;
}

#sc-contact.fh-contact-source .fh-map-frame {
  height: 238px;
}

#sc-contact.fh-contact-source .fh-contact-heading,
#sc-contact.fh-contact-source .fh-contact-content {
  position: relative;
  z-index: 2;
}

#sc-contact.fh-contact-source .fh-contact-bottom-art {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  width: min(82vw, 420px);
  pointer-events: none;
}

#sc-contact.fh-contact-source .fh-contact-bottom-art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  #sc-contact.fh-contact-source {
    padding-bottom: 72px;
  }

  #sc-contact.fh-contact-source .fh-contact-bottom-art {
    width: min(88vw, 320px);
  }
}

@media (max-height: 820px) and (min-width: 768px) {
  #sc-contact.fh-contact-source {
    padding-bottom: 56px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading {
    padding-top: 44px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading h2 {
    margin-bottom: 12px;
    font-size: 32px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading img {
    max-height: 74px;
  }

  #sc-contact.fh-contact-source .fh-contact-content {
    margin-top: 22px;
    gap: 34px;
  }

  #sc-contact.fh-contact-source .fh-contact-info {
    padding-right: 30px;
  }

  #sc-contact.fh-contact-source h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  #sc-contact.fh-contact-source p {
    grid-template-columns: 20px 72px 1fr;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  #sc-contact.fh-contact-source i {
    font-size: 16px;
  }

  #sc-contact.fh-contact-source .fh-map-frame {
    height: 210px;
  }

  #sc-contact.fh-contact-source .fh-contact-bottom-art {
    width: min(48vw, 320px);
  }
}

@media (max-width: 767.98px) {
  #sc-contact.fh-contact-source {
    padding: 34px 18px 64px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading {
    padding-top: 0;
  }

  #sc-contact.fh-contact-source .fh-contact-heading h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading img {
    max-height: 66px;
  }

  #sc-contact.fh-contact-source .fh-contact-content {
    width: 100%;
    margin-top: 20px;
    gap: 20px;
  }

  #sc-contact.fh-contact-source .fh-contact-info {
    border-right: 0;
    padding-right: 0;
  }

  #sc-contact.fh-contact-source h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  #sc-contact.fh-contact-source p {
    grid-template-columns: 18px 70px 1fr;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  #sc-contact.fh-contact-source i {
    font-size: 15px;
  }

  #sc-contact.fh-contact-source .fh-map-frame {
    height: min(220px, 34vh);
  }
}

@media (max-width: 575.98px) {
  #sc-contact.fh-contact-source {
    padding: 28px 16px 58px;
  }

  #sc-contact.fh-contact-source .fh-contact-content {
    margin-top: 16px;
    gap: 16px;
  }

  #sc-contact.fh-contact-source .fh-contact-heading img {
    max-height: 56px;
  }

  #sc-contact.fh-contact-source h3 {
    font-size: 18px;
  }

  #sc-contact.fh-contact-source p {
    grid-template-columns: 16px 64px 1fr;
    font-size: 14px;
  }
}
