@charset "UTF-8";
@keyframes heartbeat {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
#ping {
  display: block;
}

.ping {
  display: inline-block;
  background: #FAA600;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  margin: 0.2em;
  animation: 1s ease-in-out 0s infinite alternate heartbeat;
}
.ping[data-state=success] {
  background: #2a9c00;
}
.ping[data-state=error] {
  background: firebrick;
}

@keyframes move-down {
  from {
    opacity: 0.2;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#scroll-hint {
  height: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 2.5em;
}
#scroll-hint > img {
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  animation: 1s ease-in-out 0s infinite alternate move-down;
}

#next-page .container,
.screen .container,
.screen .container-md,
.screen .container-fluid {
  padding-left: 2em;
  padding-right: 2em;
}

.screen {
  position: relative;
  overflow: hidden;
  background: #FFF no-repeat center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.screen h1 {
  font-size: 3em;
}
.screen h2 {
  text-transform: uppercase;
  font-size: 2.45em;
}
.screen h3 {
  font-size: 1.75em;
}
.screen h4 {
  font-size: 1.5em;
}
.screen h5 {
  font-size: 1.25em;
}
.screen h6 {
  font-size: 1em;
}
.screen h1, .screen h2, .screen h3, .screen h4, .screen h5, .screen h6 {
  color: #1C4A50;
}
.screen .picture {
  padding-top: 51.6%;
  background: no-repeat center center;
  background-size: cover;
}
.screen .picture-full-page {
  height: 70vh;
  max-height: 800px;
}
.screen.screen-big-picture-support-picture-caption .big-picture .picture-frame,
.screen.screen-big-picture-support-picture-caption .big-picture .picture {
  padding-top: 0;
  height: 100%;
}
.screen.screen-big-picture-support-picture-caption .picture-with-caption .picture {
  padding-top: 114.4%;
}
.screen .picture-frame {
  overflow: hidden;
}
.screen .picture-frame .picture {
  cursor: pointer;
  transition: ease 0.5s;
}
.screen .picture-frame .picture:hover {
  transform: scale(1.1);
}
.screen .content-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.screen .big-picture {
  position: relative;
  overflow: hidden;
}
.screen .big-picture-overflow {
  max-height: none;
}
.screen .big-picture-overflow > div > div {
  height: 100vh;
}
.screen.big-picture-overflow-alt {
  justify-content: flex-start;
}
.screen.big-picture-overflow-alt .big-picture {
  position: absolute;
  width: 100%;
}
.screen.big-picture-overflow-alt .container {
  position: relative;
}
.screen.big-picture-overflow-alt h2 {
  color: #fff;
  text-transform: none;
  letter-spacing: 0.05em;
  padding-top: 10vh;
}
.screen.screen-two-pictures .picture {
  padding-top: 105%;
}
.screen .pictures-vertical .picture {
  padding-top: 60%;
  margin-bottom: 15px;
}
.screen .pictures-vertical[data-picture-count="1"] .picture {
  height: 80vh;
  max-height: 1000px;
}
.screen .caption {
  padding-top: 1.2em;
  text-align: right;
  font-size: 0.7em;
}
.screen .caption h6 {
  font-family: freight-sans-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.screen .caption h6:before {
  content: "/ ";
}
.screen .caption .text, .screen .caption > p {
  display: inline-block;
  font-size: 0.8em;
  width: 80%;
  margin-bottom: 0.5em;
}
.screen .caption .text {
  width: 33%;
}
.screen .caption .text-wide {
  width: 100%;
}
.screen .quote {
  margin-left: 45%;
  width: 55%;
  text-align: right;
}
.screen .pictures .picture {
  padding-top: 80.4%;
}

html[lang=zh-hans] .screen .caption .text {
  width: 100%;
}

.screen.screen-full {
  height: 100vh;
  max-height: 1200px;
}

.screen.screen-half {
  height: 50vh;
  max-height: 700px;
  min-height: 400px;
}

.screen .link,
#next-page .link {
  position: relative;
}
.screen .link a,
#next-page .link a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: calc( 33.3% - 30px);
  line-height: 3em;
  text-transform: uppercase;
  color: #000;
  margin: 2em 0;
  transition: ease 0.3s;
}
.screen .link a:after,
#next-page .link a:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: lighter;
  padding-left: 0.2em;
  width: 3em;
  height: 3em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 1.5em;
  transition: 0.3s;
}
.screen .link a:hover,
#next-page .link a:hover {
  text-decoration: none;
  padding-left: 2em;
}
.screen .link a:hover:after,
#next-page .link a:hover:after {
  border: 1px solid black;
}

.screen h2 + .link a {
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
}

@media (max-width: 767.98px) {
  .screen h1 {
    font-size: 2.5em;
  }
  .screen h2 {
    font-size: 1.75em;
  }
  .screen h3 {
    font-size: 1.5em;
  }
  .screen h4 {
    font-size: 1.3em;
  }
  .screen h5 {
    font-size: 1.15em;
  }
  .screen h6 {
    font-size: 1em;
  }
  .screen .content {
    margin-top: 1.3em;
    line-height: 1.25em;
  }
  .screen .link a {
    width: 60%;
  }
  .screen .caption .text, .screen .caption > p {
    width: 100%;
  }

  html[lang=zh-hans] .screen h1 {
    font-size: 2.3em;
  }

  .screen .quote {
    width: 100%;
    margin-left: 0;
  }
  .screen .quote h1 {
    font-size: 1.5em;
  }

  .screen .picture-full-page {
    height: 40vh;
  }

  .screen .picture-with-caption {
    display: flex;
    flex-direction: column;
  }
  .screen .picture-with-caption > .picture {
    order: 2;
  }
  .screen .picture-with-caption > .caption {
    order: 1;
  }

  .screen .link a, #next-page .link a {
    font-size: 1rem;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .screen {
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .screen > .container > .row > div {
    margin-bottom: 1em;
  }
  .screen > .container > .row > div:last-child {
    margin-bottom: 0;
  }

  .screen .container-md {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991.98px) {
  .screen.screen-big-picture-support-picture-caption .picture-with-caption .picture,
.screen.screen-big-picture-support-picture-caption .big-picture .picture {
    padding-top: 86.8%;
  }
}
.screen-dark-background > .background,
.screen-dark-background > .background > div,
.screen-dark-background > .background > div > div {
  height: 100vh;
  width: 100%;
}
.screen-dark-background > .background {
  position: absolute;
}
.screen-dark-background h1, .screen-dark-background h2, .screen-dark-background h3, .screen-dark-background h4, .screen-dark-background h5, .screen-dark-background h6, .screen-dark-background .content, .screen-dark-background a, .screen-dark-background .link a {
  color: #fff;
}
.screen-dark-background > .container {
  position: relative;
}
.screen-dark-background .link a:after {
  border-color: rgba(255, 255, 255, 0);
}
.screen-dark-background .link a:hover:after {
  border-color: white;
}

.screen.screen-long-paragraph .content {
  overflow: hidden;
  height: 100%;
  min-height: 5em;
}
.screen.screen-long-paragraph .show-less {
  display: none;
}

@media (max-width: 575.98px) {
  .screen.screen-long-paragraph .read-more,
.screen.screen-long-paragraph .show-less {
    display: inline-block;
    float: right;
    background: #FFF;
  }
  .screen.screen-long-paragraph .read-more > .text,
.screen.screen-long-paragraph .show-less > .text {
    color: #343a40;
    text-decoration: underline;
  }
  .screen.screen-long-paragraph .read-more {
    transform: translateY(-100%);
  }
  .screen.screen-long-paragraph:after {
    padding-right: 2em;
    text-align: right;
  }
  .screen.screen-long-paragraph .content {
    height: 0;
  }
  .screen.screen-long-paragraph .show-less {
    display: none;
  }

  .screen.screen-long-paragraph.show-more .read-more {
    display: none;
  }
  .screen.screen-long-paragraph.show-more .show-less {
    display: block;
  }
  .screen.screen-long-paragraph.show-more .content {
    height: 100%;
    transition-delay: 0s;
  }

  .screen.screen-long-paragraph.view-less .content {
    transition-delay: 0s;
  }
}
.screen-picture-text-frame h2 {
  margin-bottom: 0.5em;
}

@media (max-width: 767.98px) {
  .sm-scroll {
    position: relative;
    height: 238px;
  }
  .sm-scroll .sm-scroll-clip {
    overflow-x: scroll;
    position: absolute;
    width: calc(100vw - 2em);
  }
  .sm-scroll .pictures {
    width: 960px;
    padding: 0 30px 0 15px;
  }
  .sm-scroll .pictures > div {
    padding-right: 10px;
    padding-left: 0;
  }
}
.screen-title-picture .row > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen-carousel .container .carousel {
  margin: 0 auto;
  max-width: calc((100vh - 9em) * 2);
}
.screen-carousel .container .carousel .carousel-indicators {
  padding-top: 51.6%;
  bottom: auto;
  margin-left: 0;
  margin-right: 0;
}
.screen-carousel .container .carousel .carousel-indicators li {
  border: 1px solid #6c757d;
  opacity: 1;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 8px;
  margin-top: 0.5em;
  margin-left: 0.4rem;
}
.screen-carousel .container .carousel .carousel-indicators li.active {
  background: #6c757d;
}
.screen-carousel .container .carousel .carousel-control-next,
.screen-carousel .container .carousel .carousel-control-prev {
  z-index: 16;
}
.screen-carousel .container .carousel-item .caption {
  text-align: center;
  padding-top: 3em;
}
.screen-carousel .container .carousel-item .caption h6 {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .screen-carousel .container {
    padding-left: 0;
    padding-right: 0;
  }
  .screen-carousel .container .carousel-item .caption {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.effect-slide-rotate-in,
.effect-slide-in {
  line-height: 1.2;
  margin: -0.1em 0;
  overflow: hidden;
}

.effect-slide-rotate-in,
.effect-slide-rotate-in > span,
.effect-slide-in,
.effect-slide-in > span {
  display: inline-block;
  transform-origin: bottom left;
}

.effect-slide-rotate-in > span {
  transform: translateY(-80%) rotateZ(-20deg);
  transition: 1s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

.effect-slide-rotate-in.active > span {
  transform: translateY(0) rotateZ(0deg);
}

.effect-slide-in > span {
  transform: translateY(100%);
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

.effect-slide-in.active > span {
  transform: translateY(0);
}

.effect-fade-in {
  opacity: 0;
  transform: translateY(2em);
  transition: ease-out 0.5s;
}

.effect-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.effect-delay-1 {
  transition-delay: 0.25s;
}

.effect-delay-2 {
  transition-delay: 0.5s;
}

.effect-delay-3 {
  transition-delay: 1s;
}

.effect-delay-4 {
  transition-delay: 2s;
}

.picture-effect-slide,
.picture-effect-slide-rotate {
  overflow: hidden;
}
.picture-effect-slide > div,
.picture-effect-slide > div > div,
.picture-effect-slide-rotate > div,
.picture-effect-slide-rotate > div > div {
  overflow: hidden;
  height: 100%;
}
.picture-effect-slide > div,
.picture-effect-slide-rotate > div {
  transform: translateX(100%);
  transition: 2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.picture-effect-slide > div > div,
.picture-effect-slide-rotate > div > div {
  transform: translateX(-100%);
  transition: 2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.picture-effect-slide.active > div,
.picture-effect-slide-rotate.active > div {
  transform: translateX(0);
}
.picture-effect-slide.active > div > div,
.picture-effect-slide-rotate.active > div > div {
  transform: translateX(0);
}
.picture-effect-slide.active > div > div > div,
.picture-effect-slide-rotate.active > div > div > div {
  transform: scale(1);
}

.picture-effect-slide > div > div > div {
  transform: scale(1.2);
  transition: ease 2s;
}

.picture-effect-slide-ltr > div {
  transform: translateX(-100%);
}
.picture-effect-slide-ltr > div > div {
  transform: translateX(100%);
}

.picture-effect-slide-rotate > div {
  transform: translateX(100%) rotateZ(10deg);
  transform-origin: left bottom;
}

.picture-effect-slide-rotate-ltr > div {
  transform: translateX(-100%) rotateZ(-10deg);
  transform-origin: right bottom;
}
.picture-effect-slide-rotate-ltr > div > div {
  transform: translateX(100%);
}

.tabs .tab {
  display: none;
}

.tabs[data-tab="1"] .tab[data-tab="1"],
.tabs[data-tab="2"] .tab[data-tab="2"],
.tabs[data-tab="3"] .tab[data-tab="3"],
.tabs[data-tab="4"] .tab[data-tab="4"],
.tabs[data-tab="5"] .tab[data-tab="5"],
.tabs[data-tab="6"] .tab[data-tab="6"],
.tabs[data-tab="7"] .tab[data-tab="7"],
.tabs[data-tab="8"] .tab[data-tab="8"] {
  display: block;
}

.tabs[data-tab="1"] .tab-bar a[data-tab="1"],
.tabs[data-tab="2"] .tab-bar a[data-tab="2"],
.tabs[data-tab="3"] .tab-bar a[data-tab="3"],
.tabs[data-tab="4"] .tab-bar a[data-tab="4"],
.tabs[data-tab="5"] .tab-bar a[data-tab="5"],
.tabs[data-tab="6"] .tab-bar a[data-tab="6"],
.tabs[data-tab="7"] .tab-bar a[data-tab="7"],
.tabs[data-tab="8"] .tab-bar a[data-tab="8"] {
  color: #ad9870;
  border-color: #ad9870;
}

.tab-bar {
  font-family: freight-big-pro, "Garamond", "Times New Roman", source-han-serif-sc, serif;
  font-size: 1.14em;
  border-bottom: 1px solid #495057;
}
.tab-bar .tab-bar-highlight {
  display: none;
}
.tab-bar a {
  display: inline-block;
  color: #6c757d;
  border-bottom: 5px solid rgba(173, 152, 112, 0);
  padding: 0 1em 0.5em 1em;
  margin-right: 1em;
}
.tab-bar a:hover {
  text-decoration: none;
  border-color: #6c757d;
}

@media (max-width: 991.98px) {
  .tab-bar .tab-bar-highlight {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .tab-bar .tab-bar-highlight .label {
    border-bottom: 3px solid #ad9870;
    padding: 0.5em 1em;
  }
  .tab-bar .tab-bar-highlight:after {
    content: "";
    display: block;
    font-weight: bold;
    font-family: "Font Awesome 5 Pro";
    padding: 0.5em 0;
  }
  .tab-bar .tab-bar-menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 0;
  }
  .tab-bar a {
    border: none;
  }
  .tab-bar.open-menu .tab-bar-menu {
    padding-top: 0.5em;
    height: 100%;
    border-top: 1px solid #000;
  }
  .tab-bar.open-menu .tab-bar-highlight:after {
    content: "";
  }
}
#tools #music-toggle {
  display: none;
}

#background {
  background: center top;
  background-size: cover;
  position: fixed;
  height: 100vh;
  width: 100%;
}

#cover.main-screen {
  justify-content: flex-end;
  padding-bottom: 5vh;
}
#cover h1 {
  font-size: 6rem;
  line-height: 1em;
  color: #FFF;
  text-transform: uppercase;
  font-style: italic;
}

#next-page {
  font-size: 1.25em;
  position: relative;
  background: #FFF;
  border-top: 1px solid #495057;
}
#next-page .link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

main.long-text {
  padding-top: 6.25rem;
  background: #fff;
}

.screen .big-picture-map .picture {
  background-size: contain;
}

@media (max-width: 991.98px) {
  #cover.main-screen {
    justify-content: flex-start;
  }
  #cover h1 {
    font-size: 2em;
    margin-top: 2em;
  }
}
.screen .big-picture.big-picture-map {
  max-width: calc((100vh - 5em) / 0.706);
  margin-left: auto;
  margin-right: auto;
}
.screen .big-picture.big-picture-map .picture {
  padding-top: 70.6%;
}
.screen .big-picture.big-picture-map .icon-expand {
  position: relative;
}
.screen .big-picture.big-picture-map .icon-expand > img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.map-expand {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1050;
}
.map-expand.active {
  display: block;
}
.map-expand > .view {
  cursor: grab;
  overflow: scroll;
  width: 100%;
  height: 100%;
}
.map-expand > .view > img {
  pointer-events: none;
}
.map-expand > .close {
  position: absolute;
  width: 2em;
  height: 2em;
  top: 0;
  right: 1em;
  opacity: 1;
  background: #1c4a50;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.map-expand > .close > img {
  height: 1em;
}

.icon-drag {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: 0.5s;
}
.icon-drag > img {
  animation: 1s ease-in-out 0s infinite alternate heartbeat;
}
.icon-drag.hide {
  opacity: 0 !important;
}

@media (max-width: 991.98px) {
  .map-expand > .view > img {
    width: 2000px;
    height: auto;
  }
}
.screen-site-plan .plan {
  display: flex;
  flex-direction: row;
}
.screen-site-plan .plan .allow-scroll {
  width: 60%;
  max-width: 70vh;
  cursor: zoom-in;
}
.screen-site-plan .plan .map {
  width: 100%;
  background: #dee2e6 no-repeat;
  background-size: cover;
  position: relative;
}
.screen-site-plan .plan .map > .hints {
  position: absolute;
  pointer-events: none;
}
.screen-site-plan .plan .map > .hints .hint {
  position: relative;
  display: none;
  font-size: 0.5rem;
}
.screen-site-plan .plan .map > .hints .hint .text {
  background: #000;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  transform: translateY(calc(-100% - 5px)) translateX(-50%);
  margin-bottom: 1em;
  text-transform: uppercase;
  max-width: 16em;
}
.screen-site-plan .plan .map > .hints .hint:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  background: #000;
  transform: translateX(-50%) translateY(-100%) rotateZ(45deg);
}
.screen-site-plan .plan .map > .hints.active .hint {
  display: block;
}
.screen-site-plan .plan .map > svg {
  width: 100%;
  height: auto;
}
.screen-site-plan .plan .map > svg .hotspot {
  cursor: pointer;
}
.screen-site-plan .plan .map > svg .hotspot text {
  pointer-events: none;
  user-select: none;
  font-weight: bold;
  font-size: 0.35rem;
  letter-spacing: 0;
}
.screen-site-plan .plan .icon-expand {
  content: "";
  display: block;
  background: url("/media/images/icons/expand.svg") no-repeat top right 1em;
  background-size: auto 100%;
  height: 1em;
  transform: translateY(-100%);
  margin-top: -1em;
}
.screen-site-plan .plan .btn-close {
  display: none;
  position: absolute;
  width: 2em;
  height: 2em;
  top: 0;
  right: 1em;
  opacity: 1;
  background: #1c4a50;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1050;
}
.screen-site-plan .plan .icon-drag {
  display: none;
  z-index: 1050;
}
.screen-site-plan .key {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 2em;
}
.screen-site-plan .key h5 {
  font-family: freight-sans-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000;
  font-weight: bold;
}
.screen-site-plan .key ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: keylist;
}
.screen-site-plan .key li {
  font-size: 0.57rem;
  counter-increment: keylist;
  line-height: 1.2;
  text-transform: uppercase;
}
.screen-site-plan .key li:before {
  content: counter(keylist) ".";
  display: inline-block;
  width: 2em;
}
.screen-site-plan .plan.fullscreen {
  position: fixed;
  background: #000;
  z-index: 1050;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.screen-site-plan .plan.fullscreen .btn-close {
  display: flex;
}
.screen-site-plan .plan.fullscreen .allow-scroll {
  width: 100%;
  height: 100%;
  max-width: none;
  overflow: scroll;
  cursor: grab;
}
.screen-site-plan .plan.fullscreen .map {
  min-width: 2176px;
  min-height: 2000px;
}
.screen-site-plan .plan.fullscreen .key {
  display: none;
}
.screen-site-plan .plan.fullscreen .icon-drag {
  display: flex;
}

@media (max-width: 1739.98px) {
  .screen-site-plan .plan .map > svg .hotspot circle {
    r: 10;
  }
  .screen-site-plan .plan .map > svg .hotspot text {
    font-size: 0.8rem;
  }
}
@media (max-width: 991.98px) {
  .screen-site-plan .plan .allow-scroll {
    width: 100%;
  }
  .screen-site-plan .key {
    display: none;
  }
  .screen-site-plan .plan.fullscreen .map > .hints .hint {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .screen-site-plan .plan.fullscreen .map {
    min-width: 1088px;
    min-height: 1000px;
  }
}
.hover-text {
  width: 14.28em;
  margin-right: 1em;
  margin-bottom: 1em;
}
.hover-text > div {
  height: 100%;
  width: 100%;
  border: 1px solid #000;
}
.hover-text a {
  display: block;
  background: no-repeat;
  background-size: cover;
}
.hover-text a .description {
  padding-top: 100%;
  background: rgba(28, 74, 80, 0);
  transition: 0.5s;
}
.hover-text a .description .text {
  display: none;
  position: relative;
  font-size: 1.14em;
  line-height: 1.2;
  padding-left: 1em;
}
.hover-text a .description .text .label {
  position: absolute;
  bottom: 1.5em;
  color: #fff;
  font-family: freight-big-pro, "Garamond", "Times New Roman", source-han-serif-sc, serif;
}
.hover-text a .description .text .label > span {
  display: block;
}
.hover-text a:hover .description {
  background: rgba(28, 74, 80, 0.8);
}
.hover-text a:hover .text {
  display: block;
}

@media (max-width: 991.98px) {
  .hover-text {
    margin-right: 0;
    margin-bottom: 4em;
    width: 100%;
  }
  .hover-text a .description .text {
    display: block;
    padding-left: 0;
  }
  .hover-text a .description .text .label {
    top: 0.5em;
  }
  .hover-text a .description .text .type {
    color: #1c4a50;
  }
  .hover-text a .description .text .size {
    color: #495057;
    font-family: freight-sans-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.8em;
  }
  .hover-text a:hover .description {
    background: rgba(28, 74, 80, 0);
  }
}
.floor-plans {
  display: flex;
  flex-direction: row;
}

@media (max-width: 991.98px) {
  .floor-plans {
    flex-direction: column;
  }
}
.schematic-diagram .level[data-level=roof] .indicator {
  position: relative;
  justify-content: flex-end;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100" height="100" viewBox="0 0 100 100"><line x1="0" y1="0" x2="100" y2="100" stroke="black" stroke-width="1"/></svg>');
  background-position: bottom right -1px;
  background-repeat: no-repeat;
}
.schematic-diagram .level[data-level=roof] .level-header-column {
  position: absolute;
  transform: translate(80%, -0.5em);
}
.schematic-diagram .level[data-level=roof] .level-header-row {
  transform: translate(0, 0.5em);
  width: 100%;
  text-align: center;
}
.schematic-diagram .level {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-transform: uppercase;
}
.schematic-diagram .level .indicator, .schematic-diagram .level .full-floor, .schematic-diagram .level .unit, .schematic-diagram .level .unit a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.1em 0;
}
.schematic-diagram .level .indicator {
  width: 10%;
}
.schematic-diagram .level .full-floor {
  width: 90%;
  color: #fff;
  border-bottom: #6c757d solid 1px;
}
.schematic-diagram .level .unit {
  width: 30%;
  border-bottom: #495057 solid 1px;
}
.schematic-diagram .level .unit a {
  width: 100%;
  color: #fff;
}
.schematic-diagram .level .unit-01 {
  background-color: #00877D;
  border-bottom: #6c757d solid 1px;
}
.schematic-diagram .level .unit-02 {
  background-color: #88744A;
  border-bottom: #6c757d solid 1px;
}
.schematic-diagram .level .unit-02[data-type="3br1"], .schematic-diagram .level .unit-02[data-type="3br2"] {
  background-color: #336270;
}
.schematic-diagram .level .unit-03 {
  background-color: #1A4550;
}
.schematic-diagram .level .unit[data-type=ph1] a:before {
  content: "PH-1";
}
.schematic-diagram .level .unit[data-type=ph2] a:before {
  content: "PH-2";
}
.schematic-diagram .level .unit[data-type=ph3] a:before {
  content: "PH-3";
}
.schematic-diagram .level .unit[data-type="4br1"] a:before {
  content: "4BR-1";
}
.schematic-diagram .level .unit[data-type="4br2"] a:before {
  content: "4BR-2";
}
.schematic-diagram .level .unit[data-type="2s1"] a:before {
  content: "2S-1";
}
.schematic-diagram .level .unit[data-type="2s2"] a:before {
  content: "2S-2";
}
.schematic-diagram .level .unit[data-type="3s1"] a:before {
  content: "3S-1";
}
.schematic-diagram .level .unit[data-type="3s2"] a:before {
  content: "3S-2";
}
.schematic-diagram .level .unit[data-type="3br1"] a:before {
  content: "3BR-1";
}
.schematic-diagram .level .unit[data-type="3br2"] a:before {
  content: "3BR-2";
}
.schematic-diagram .level[data-level="20"] {
  height: 4em;
}
.schematic-diagram .level[data-level="20"] .unit {
  background: #3E3D40;
}
.schematic-diagram .level[data-level="20"] .unit-01 {
  border-right: 1px solid #212529;
}
.schematic-diagram .level[data-level="20"] .unit-03 {
  border-left: 1px solid #212529;
}
.schematic-diagram .level[data-level="14"],
.schematic-diagram .level[data-level="1"] {
  height: 5em;
}
.schematic-diagram .level[data-level="14"] .indicator,
.schematic-diagram .level[data-level="14"] .full-floor,
.schematic-diagram .level[data-level="1"] .indicator,
.schematic-diagram .level[data-level="1"] .full-floor {
  align-items: flex-end;
  padding-bottom: 0.5em;
}
.schematic-diagram .level[data-level="14"] .full-floor,
.schematic-diagram .level[data-level="1"] .full-floor {
  background: #96ACB7;
}
.schematic-diagram .level[data-level=B1] .full-floor,
.schematic-diagram .level[data-level=B2] .full-floor {
  background-color: #99999A;
}

@media (max-width: 767.98px) {
  .schematic-diagram .level[data-level=roof] .level-header-row {
    transform: translate(-15px, 1em);
    font-size: 0.5em;
  }
  .schematic-diagram .level[data-level=roof] .level-header-column {
    transform: translate(80%, -1em);
    font-size: 0.5em;
  }
}
#location-main #s3.screen-carousel .container .carousel .carousel-indicators {
  padding-top: 70%;
}
#location-main #s3.screen .picture {
  padding-top: 70%;
}

/*# sourceMappingURL=pages.css.map */
