@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;
}

.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%);
}

#video-background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: #1c2b03 no-repeat;
  background-size: cover;
}
#video-background:before {
  content: "";
  position: absolute;
  height: 30vh;
  min-height: 6.25rem;
  width: 100%;
  background: url("/media/images/gradient-v-black100-0.png") repeat-x;
  background-size: 100% 100%;
  z-index: 500;
  opacity: 0.6;
  pointer-events: none;
}
#video-background .video-center {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#video-background .video-center:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url("/media/images/home-fallback.jpg") center top no-repeat;
  background-size: cover;
  opacity: 0;
  transition: 0.5s;
}
#video-background .video-center > div {
  width: 100%;
  height: 56.25vw;
}
#video-background .video-center > div > video {
  opacity: 0;
  transition: opacity 2s;
  width: 100%;
  height: 100%;
}
#video-background .video-center > div > div, #video-background .video-center > div button {
  display: none;
}
#video-background.started .video-center > div > video {
  opacity: 1;
}

#video-background.fallback .video-center:before {
  opacity: 1;
}

@media (max-aspect-ratio: 16/9) {
  #video-background .video-center > div {
    height: 100vh;
    min-width: 400%;
  }
}
#links {
  font-family: freight-big-pro, "Garamond", "Times New Roman", source-han-serif-sc, serif;
  width: 50%;
  margin-top: 3em;
}
#links a, #links a:hover {
  color: #FFF;
  margin-right: 2.5em;
  padding-bottom: 0.8em;
  border-bottom: 5px solid rgba(173, 152, 112, 0);
}
#links a:hover {
  text-decoration: none;
  border-color: #ad9870;
}

@media (max-width: 1739.98px) {
  #links {
    font-size: 1.2rem;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #links {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    font-size: 1rem;
  }
  #links a {
    margin: 0;
    padding-bottom: 0.5em;
  }
  #links a:hover {
    border-bottom: none;
  }
}
body {
  overflow-y: scroll;
}

main {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
}
main #cover {
  min-height: auto;
  height: calc(100vh - 12.5rem);
}

body > footer {
  display: none;
}

#scroll-hint {
  opacity: 0;
}

body.allow-scroll main {
  position: relative;
  max-height: none;
}
body.allow-scroll > footer {
  display: block;
}
body.allow-scroll #scroll-hint {
  opacity: 1;
}

#content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
  font-family: freight-big-pro, "Garamond", "Times New Roman", source-han-serif-sc, serif;
  font-size: 2.5em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: right;
}
#quote .author {
  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.4em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#quote {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s;
}

#links {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s;
}
#links.show {
  position: relative;
  visibility: visible;
  opacity: 1;
}

#dawn {
  background: #2c5854;
  text-align: center;
}
#dawn h1 {
  color: #ad9870;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
#dawn h1 .alt {
  font-family: "Times New Roman", serif;
  font-style: italic;
}
#dawn .content {
  color: #FFF;
}

#location .background .picture,
#dawn .background .picture,
#grand-estate .background .picture,
#the-plans .background .picture {
  background-attachment: fixed;
}

#grand-estate {
  border-bottom: 14px solid #1C4A50;
}

@media (max-width: 991.98px) {
  #location .background .picture,
#dawn .background .picture,
#grand-estate .background .picture,
#the-plans .background .picture {
    background-attachment: scroll;
  }
}
@media (max-width: 767.98px) {
  #content {
    padding-left: 40px;
    padding-right: 40px;
  }

  #quote {
    font-size: 1.5em;
  }

  html[lang=zh-hans] #quote {
    font-size: 1.3em;
  }

  main[data-state="2"] #quote {
    opacity: 0;
  }
}
#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;
}

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