html {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%; }
  html.height-100 {
    height: 100%; }

body {
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }
  .height-100 body {
    height: 100%; }
  body.no-scroll {
    overflow-y: hidden; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

@font-face {
  font-family: 'Ayer Deck';
  src: url(./fonts/AyerDeck-Regular-Web.woff2) format("woff2"), url(./fonts/AyerDeck-Regular-Web.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: "ArtifexCF";
  src: url(./fonts/ArtifexCFLight.woff2) format("woff2"), url(./fonts/ArtifexCFLight.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: "ArtifexCF";
  src: url(./fonts/ArtifexCFRegular.woff2) format("woff2"), url(./fonts/ArtifexCFRegular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

.app {
  position: relative;
  width: 100%;
  background-color: #EFEFE9; }
  .height-100 .app {
    height: 100%; }

.section {
  position: relative;
  width: 100%; }

.column {
  padding-right: 20px;
  padding-left: 20px; }

.column-1,
.column-2,
.column-3,
.column-4,
.column-5 {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto; }

.column-1 {
  max-width: 350px; }

.column-2 {
  max-width: 980px; }

.column-3 {
  max-width: 1020px; }

.column-4 {
  max-width: 1180px; }

.column-5 {
  max-width: 1920px; }

.img-blk img {
  display: block;
  width: 100%;
  height: auto; }

.row:after {
  content: "";
  display: table;
  clear: both; }

.col-lg-12 {
  width: 100%;
  float: left; }

.col-lg-10 {
  width: 83.333333%;
  float: left; }

.col-lg-9 {
  width: 75%;
  float: left; }

.col-lg-8 {
  width: 66.666667%;
  float: left; }

.col-lg-7 {
  width: 58.333333%;
  float: left; }

.col-lg-6 {
  width: 50%;
  float: left; }

.col-lg-5 {
  width: 41.666667%;
  float: left; }

.col-lg-4 {
  position: relative;
  width: 33.333333%;
  float: left; }

.col-lg-3 {
  width: 25%;
  float: left; }

.col-lg-2 {
  width: 16.666667%;
  float: left; }

@media only screen and (max-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
    float: left; }
  .col-md-6 {
    width: 50%;
    float: left; }
  .col-md-8 {
    width: 66.666667%;
    float: left; }
  .col-md-9 {
    width: 75%;
    float: left; }
  .col-md-12 {
    width: 100%;
    float: none; } }

@media only screen and (max-width: 640px) {
  .col-sm-12 {
    width: 100%;
    float: none; }
  .col-sm-4 {
    width: 33.333333%;
    float: left; } }

.table {
  display: table; }

.table-row {
  display: table-row; }

.table-cell {
  position: relative;
  display: table-cell;
  vertical-align: middle; }

.table.table-100 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse; }

.table-reverse .table-cell:first-child {
  left: 50%; }

.table-reverse .table-cell:last-child {
  left: -50%; }

.cell-50 .table-cell {
  width: 50%; }

.cell-txt {
  padding-top: 50px;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-left: 20px; }

.cell-txt-limit {
  width: 100%;
  max-width: 400px;
  margin: 0 auto; }

@media only screen and (max-width: 768px) {
  .table-md-block {
    display: block; }
    .table-md-block .table-row, .table-md-block .table-cell {
      display: block; }
  .table-reverse .table-cell:first-child {
    left: auto; }
  .table-reverse .table-cell:last-child {
    left: auto; }
  .cell-50 .table-cell {
    width: 100%; } }

@media only screen and (max-width: 640px) {
  .cell-txt {
    padding-top: 30px;
    padding-bottom: 30px; } }

.cel-lg-1 {
  width: 8.333333%; }

.cel-lg-2 {
  width: 16.666667%; }

.cel-lg-3 {
  width: 25%; }

.cel-lg-4 {
  width: 33.333333%; }

.cel-lg-5 {
  width: 41.666667%; }

.is-tablet {
  display: none; }

.is-mobile {
  display: none; }

@media only screen and (max-width: 768px) {
  .no-tablet {
    display: none; } }

@media only screen and (max-width: 640px) {
  .no-mobile {
    display: none; }
  .is-mobile {
    display: block; } }

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .flex.flex-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .flex.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .flex.flex-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .flex.flex-justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .flex.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .flex.flex-align-end {
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end; }
  .flex .cen-h {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center; }
  .flex .col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .flex .col-fl {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
  .flex .col-fl-6 {
    position: relative;
    width: 50%; }
  .flex .col-fl-4 {
    position: relative;
    width: 33.333333%; }
  .flex.has-cols .col-fl-6 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%; }
  .flex .col-image {
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat; }
    .flex .col-image .image {
      position: absolute;
      top: 12.5%;
      left: 50%;
      width: 65%;
      max-width: 620px;
      height: 75%;
      background-position: 50% 50%;
      background-size: contain;
      background-repeat: no-repeat; }
  @media only screen and (max-width: 640px) {
    .flex.flex-reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .flex .col-fl-sm-12 {
      width: 100%; }
    .flex .col-image {
      padding-bottom: 100%; } }

.register {
  position: relative; }

.registration-form {
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear; }
  .registration-form.is-active {
    opacity: 0.5; }
  .registration-form .flex {
    margin-bottom: 50px; }
  .registration-form .reg-col {
    width: 50%;
    margin-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px; }
  .registration-form .reg-consent {
    margin-top: 25px; }
  .registration-form .reg-submit {
    text-align: center; }
  @media only screen and (max-width: 768px) {
    .registration-form .flex {
      display: block;
      margin-bottom: 50px; }
    .registration-form .reg-col {
      width: 100%;
      padding-right: 0;
      padding-left: 0; }
    .registration-form .reg-consent {
      margin-top: 35px; } }

input,
select,
textarea,
button.submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  border: 0; }

input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  height: 40px;
  background: transparent;
  border-bottom: 1px solid #EFEFE9;
  color: #EFEFE9;
  font-size: 16px;
  font-weight: 300;
  font-family: "ArtifexCF", Times, Geneva, serif;
  line-height: normal; }
  input[type="text"].error,
  input[type="email"].error,
  textarea.error {
    border-bottom-color: #fdb913; }

textarea {
  resize: none; }

.register-select-hidden {
  position: relative;
  height: 0;
  overflow: hidden; }

.register-select {
  position: relative;
  white-space: nowrap; }

.register-select-field {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #EFEFE9;
  cursor: pointer; }
  .register-select-field:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 9;
    top: 20px;
    right: 5px;
    width: 0;
    height: 0;
    border-width: 7px 5px 0;
    border-color: #EFEFE9 transparent transparent transparent;
    border-style: solid; }
  .register-select-field.error {
    border-bottom-color: #fdb913; }

.register-select-label {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all .1s linear;
  transition: all .1s linear; }
  .has-value .register-select-label {
    opacity: 0.4;
    -webkit-transform: translateY(-50%) scale(0.7);
            transform: translateY(-50%) scale(0.7); }

.register-select-menu {
  display: none;
  position: absolute;
  z-index: 99;
  top: 40px;
  left: 0;
  width: 100%;
  max-height: 200px;
  background-color: #EFEFE9;
  overflow: auto;
  -webkit-box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.2); }

.register-select-item {
  height: 40px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: #EFEFE9;
  cursor: pointer;
  -webkit-transition: background-color .2s linear;
  transition: background-color .2s linear; }
  .register-select-item:not(:last-child) {
    border-bottom: 1px solid #A99989; }
  .register-select-item.is-selected {
    background-color: #524D49;
    color: #EFEFE9; }

.register-select-label,
.register-select-item,
.register-select-detail {
  height: 40px;
  color: #EFEFE9;
  font-size: 16px;
  font-family: "ArtifexCF", Times, Geneva, serif;
  font-weight: 400;
  line-height: 40px; }

.register-select-item {
  color: #524D49; }

.qualifier {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .qualifier label {
    display: inline-block;
    position: relative;
    padding-top: 2px;
    padding-left: 28px;
    cursor: pointer;
    color: #EFEFE9;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33333em;
    font-family: "ArtifexCF", Times, Geneva, serif; }

.custom-check {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border: 1px solid #EFEFE9; }
  .custom-check .check {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px; }
    .custom-check .check:after {
      content: '';
      display: block;
      position: absolute;
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
      background-color: #EFEFE9;
      opacity: 0;
      border-radius: 100%; }
  .custom-check input[type=checkbox] {
    visibility: hidden; }
    .custom-check input[type=checkbox]:checked + .check:after {
      opacity: 1; }

.qualifier.error {
  /*label {
		color:$color-error;
	}*/ }
  .qualifier.error .custom-check {
    border: 1px solid #fdb913; }

button.submit {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  background-color: transparent;
  color: #EFEFE9;
  font-weight: 400;
  font-size: 18px;
  line-height: 1em;
  font-family: "ArtifexCF", Times, Geneva, serif;
  text-transform: uppercase;
  white-space: nowrap; }
  button.submit:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EFEFE9; }

::-webkit-input-placeholder {
  /* Safari, Chrome and Opera */
  color: #EFEFE9;
  font-size: 16px; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #EFEFE9;
  font-size: 16px; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #EFEFE9;
  font-size: 16px; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #EFEFE9;
  font-size: 16px; }

::-ms-input-placeholder {
  /* Edge */
  color: #EFEFE9;
  font-size: 16px; }

:-moz-placeholder-shown {
  /* Standard one last! */
  color: #EFEFE9;
  font-size: 16px; }

:-ms-input-placeholder {
  /* Standard one last! */
  color: #EFEFE9;
  font-size: 16px; }

:placeholder-shown {
  /* Standard one last! */
  color: #EFEFE9;
  font-size: 16px; }

#recaptcha,
.grecaptcha-badge {
  visibility: hidden; }

.has-animation.has-opacity {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1);
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1); }

.has-animation.has-text-1 h1 {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1);
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1); }

.has-animation.has-text-1 p:nth-of-type(1) {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms;
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms; }

.has-animation.has-text-1 p:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms;
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms; }

.has-animation.has-text-1 .has-rule:after {
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 750ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms, height 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms;
  transition: opacity 750ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms, height 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms; }

.has-animation.has-text-1 p:nth-of-type(3) {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1500ms;
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1500ms; }

.has-animation.has-text-2 h1 {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1);
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1); }

.has-animation.has-text-2 p:nth-of-type(1) {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms;
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms; }

.has-animation.has-text-2 .has-rule:after {
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 750ms cubic-bezier(0.56, 0, 0.265, 1) 500ms, height 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms;
  transition: opacity 750ms cubic-bezier(0.56, 0, 0.265, 1) 500ms, height 1000ms cubic-bezier(0.56, 0, 0.265, 1) 500ms; }

.has-animation.has-text-2 p:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms;
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms; }

.has-animation.has-image {
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1);
  transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1); }
  .has-animation.has-image .image {
    opacity: 0;
    -webkit-transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms;
    transition: opacity 1000ms cubic-bezier(0.56, 0, 0.265, 1) 1000ms; }

.is-animated.has-opacity {
  opacity: 1; }

.is-animated.has-text-1 h1,
.is-animated.has-text-1 p:nth-of-type(1),
.is-animated.has-text-1 p:nth-of-type(2),
.is-animated.has-text-1 p:nth-of-type(3), .is-animated.has-text-2 h1,
.is-animated.has-text-2 p:nth-of-type(1),
.is-animated.has-text-2 p:nth-of-type(2),
.is-animated.has-text-2 p:nth-of-type(3) {
  opacity: 1; }

.is-animated.has-text-1 .has-rule:after, .is-animated.has-text-2 .has-rule:after {
  opacity: 1;
  height: 60px; }

.is-animated.has-image {
  opacity: 1; }
  .is-animated.has-image .image {
    opacity: 1; }

h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 1em;
  font-family: "Ayer Deck", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.text h1:not(:last-child),
.section-register h1 {
  margin-bottom: 15px; }

.section-living .text h1:not(:last-child) {
  margin-bottom: 50px; }

p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.375em;
  font-family: "ArtifexCF", Times, Geneva, serif; }
  @media only screen and (max-width: 768px) {
    p {
      font-size: 14px; } }
  @media only screen and (max-width: 640px) {
    p {
      font-size: 16px; } }

.has-rule {
  position: relative;
  padding-bottom: 140px; }
  .has-rule:after {
    content: '';
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 1px;
    height: 60px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  @media only screen and (max-width: 768px) {
    .has-rule {
      padding-bottom: 100px; }
      .has-rule:after {
        top: 20px; } }

.text p:not(:last-child) {
  margin-bottom: 15px; }

.text p + .has-rule {
  margin-top: -15px; }

.weather p {
  color: #3D3633;
  font-size: 16px;
  white-space: nowrap; }
  @media only screen and (max-width: 1366px) {
    .weather p {
      font-size: 14px; } }
  @media only screen and (max-width: 640px) {
    .weather p {
      font-size: 12px; } }

.link {
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer; }

.is-light h1,
.is-light p {
  color: #524D49; }

.is-light .has-rule:after {
  background-color: #A99989; }

.is-light a.link:after {
  background-color: #524D49; }

.is-dark h1,
.is-dark p {
  color: #EFEFE9; }

.is-dark .has-rule:after {
  background-color: #EFEFE9; }

.is-dark a.link:after {
  background-color: #EFEFE9; }

a {
  color: inherit;
  text-decoration: none; }

b {
  font-weight: 700; }

.nowrap {
  white-space: nowrap; }

footer {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px; }
  footer .footer-logo {
    text-align: center; }
  footer .col-fl-4:last-child {
    text-align: right; }
  footer p.disclaimer {
    opacity: 0;
    display: block;
    width: 50%;
    max-width: 770px;
    margin-bottom: 20px;
    margin-left: auto;
    padding-left: 150px;
    color: #EFEFE9;
    font-size: 10px;
    font-weight: 400;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear; }
    footer p.disclaimer.is-active {
      opacity: 1; }
  footer .footer-link {
    cursor: pointer;
    color: #EFEFE9;
    font-weight: 400;
    font-size: 10px;
    line-height: 1em;
    font-family: "ArtifexCF", Times, Geneva, serif;
    text-transform: uppercase;
    white-space: nowrap; }
  @media only screen and (max-width: 1366px) {
    footer {
      padding-right: 0;
      padding-bottom: 20px;
      padding-left: 0; } }
  @media only screen and (max-width: 990px) {
    footer p.disclaimer {
      width: 100%; } }
  @media only screen and (max-width: 640px) {
    footer .col-fl-4:nth-child(1) {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      padding-right: 5px; }
    footer .col-fl-4:nth-child(2) {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      margin-bottom: 20px; }
    footer .col-fl-4:nth-child(3) {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3;
      padding-left: 5px;
      text-align: left; }
    footer .flex {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      footer .flex .col-fl-sm {
        width: auto; }
    footer p.disclaimer {
      max-width: 100%;
      padding-left: 0; } }

.register-background {
  background-color: #524D49;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/production/src/images/home/AdobeStock_280273959_2.jpg); }
  @media only screen and (max-width: 640px) {
    .register-background {
      background-image: url(./images/production/src/images/home/640/AdobeStock_280273959_2.jpg); } }

.section-register {
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden; }
  .section-register .column-1 {
    margin-bottom: 60px; }
  .section-register h1,
  .section-register p {
    text-align: center; }
  @media only screen and (max-width: 768px) {
    .section-register {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media only screen and (max-width: 640px) {
    .section-register {
      padding-bottom: 75px; } }

.register {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto; }
  @media only screen and (max-width: 768px) {
    .register {
      max-width: 460px; } }
  @media only screen and (max-width: 500px) {
    .register {
      max-width: 100%; } }

.section-hero {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden; }
  .section-hero .flex {
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .section-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 150%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: gradient 200s cubic-bezier(0.25, 0, 0.75, 1) infinite;
            animation: gradient 200s cubic-bezier(0.25, 0, 0.75, 1) infinite;
    will-change: transform; }
  .section-hero .logo {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 91.85185px;
    height: 20px; }
    .section-hero .logo a,
    .section-hero .logo svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .section-hero .weather {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right; }
    .section-hero .weather .weather-text {
      text-transform: capitalize; }
  .section-hero .hero-logo {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    width: 15.25%;
    text-align: center;
    -webkit-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%); }
    .section-hero .hero-logo img {
      display: block;
      width: 100%;
      height: auto; }
  .section-hero .hero-video {
    position: relative;
    width: 75%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto; }
    .section-hero .hero-video .video {
      position: relative;
      padding-bottom: 41.87408%; }
      .section-hero .hero-video .video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  .section-hero .hero-scroll {
    position: absolute;
    left: 0;
    bottom: -83px;
    width: 100%;
    height: 15px;
    text-align: center; }
    .section-hero .hero-scroll span {
      display: inline-block;
      cursor: pointer;
      line-height: 0; }
  .section-hero .hero-scroll-mobile {
    display: none; }
  .section-hero.no-height {
    height: auto; }
  .section-hero.is-slightly-cloudy .hero-image {
    background-image: url(./images/production/src/images/home/PARK_Website_Header_Slightly_Cloudy.jpg); }
  .section-hero.is-cloudy .hero-image {
    background-image: url(./images/production/src/images/home/PARK_Website_Header_Cloudy.jpg); }
  .section-hero.is-cloudy .logo path {
    fill: #EFEFE9; }
  .section-hero.is-cloudy .weather p {
    color: #EFEFE9; }
  .section-hero.is-cloudy .hero-scroll polygon,
  .section-hero.is-cloudy .hero-scroll-mobile polygon {
    fill: #EFEFE9; }
  .section-hero.is-rain .hero-image {
    background-image: url(./images/production/src/images/home/PARK_Website_Header_Storm_Rain.jpg); }
  .section-hero.is-rain .logo path {
    fill: #EFEFE9; }
  .section-hero.is-rain .weather p {
    color: #EFEFE9; }
  .section-hero.is-rain .hero-scroll polygon,
  .section-hero.is-rain .hero-scroll-mobile polygon {
    fill: #EFEFE9; }
  .section-hero.is-night .hero-image {
    background-image: url(./images/production/src/images/home/PARK_Website_Header_Night.jpg);
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%);
    -webkit-animation: night 200s cubic-bezier(0.25, 0, 0.75, 1) infinite;
            animation: night 200s cubic-bezier(0.25, 0, 0.75, 1) infinite; }
  .section-hero.is-night .logo path {
    fill: #EFEFE9; }
  .section-hero.is-night .weather p {
    color: #EFEFE9; }
  .section-hero.is-night .hero-scroll polygon,
  .section-hero.is-night .hero-scroll-mobile polygon {
    fill: #EFEFE9; }
  .section-hero.is-sunny .hero-image {
    background-image: url(./images/production/src/images/home/PARK_Website_Header_Sunny.jpg); }
  @media only screen and (min-width: 1920px) {
    .section-hero .logo {
      top: 45px;
      left: 50px; }
    .section-hero .weather {
      top: 50px;
      right: 50px; }
    .section-hero .hero-image {
      -webkit-animation: gradient 300s cubic-bezier(0.25, 0, 0.75, 1) infinite;
              animation: gradient 300s cubic-bezier(0.25, 0, 0.75, 1) infinite; }
    .section-hero.is-night .hero-image {
      -webkit-animation: night 300s cubic-bezier(0.25, 0, 0.75, 1) infinite;
              animation: night 300s cubic-bezier(0.25, 0, 0.75, 1) infinite; } }
  @media only screen and (max-width: 640px) {
    .section-hero .logo {
      top: 7px;
      left: 10px;
      width: 68.88889px;
      height: 15px; }
    .section-hero .weather {
      top: 10px;
      right: 10px; }
    .section-hero .hero-logo {
      width: 25%; }
    .section-hero .hero-video {
      width: 90%; }
    .section-hero.is-slightly-cloudy .hero-image {
      background-image: url(./images/production/src/images/home/640/PARK_Website_Header_Slightly_Cloudy.jpg); }
    .section-hero.is-cloudy .hero-image {
      background-image: url(./images/production/src/images/home/640/PARK_Website_Header_Cloudy.jpg); }
    .section-hero.is-rain .hero-image {
      background-image: url(./images/production/src/images/home/640/PARK_Website_Header_Storm_Rain.jpg); }
    .section-hero.is-night .hero-image {
      background-image: url(./images/production/src/images/home/640/PARK_Website_Header_Night.jpg); }
    .section-hero.is-sunny .hero-image {
      background-image: url(./images/production/src/images/home/640/PARK_Website_Header_Sunny.jpg); } }
  @media only screen and (max-width: 480px) {
    .section-hero {
      padding-top: 125px;
      padding-bottom: 125px; }
      .section-hero .hero-image {
        width: 100%;
        height: 100%;
        -webkit-animation: none;
                animation: none; }
      .section-hero.is-sunny .hero-image {
        background-position: 0% 50%; }
      .section-hero.is-night .hero-image {
        background-position: 70% 50%;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        -webkit-animation: none;
                animation: none; }
      .section-hero .hero-logo {
        width: 40%; }
      .section-hero .hero-video {
        width: 70%; }
        .section-hero .hero-video .video {
          padding-bottom: 150%; }
      .section-hero .hero-scroll {
        display: none; }
      .section-hero .hero-scroll-mobile {
        display: block;
        position: absolute;
        left: 0;
        bottom: 35px;
        width: 100%;
        height: 15px;
        text-align: center; }
        .section-hero .hero-scroll-mobile span {
          display: inline-block;
          cursor: pointer;
          line-height: 0; } }

.hero-video-fallback {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/production/src/images/home/hero-video-fallback.jpg); }
  .hero-video-fallback.has-video {
    opacity: 0; }
  @media only screen and (max-width: 480px) {
    .hero-video-fallback {
      background-image: url(./images/production/src/images/home/640/hero-video-fallback.jpg); } }

@-webkit-keyframes gradient {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  50% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); } }

@keyframes gradient {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  50% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); } }

@-webkit-keyframes night {
  0% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); } }

@keyframes night {
  0% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    -webkit-transform: translate(-50%, -33%);
            transform: translate(-50%, -33%); } }

.section-living,
.section-thank-you,
.section-404 {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #EFEFE9; }
  .section-living .flex,
  .section-thank-you .flex,
  .section-404 .flex {
    height: 100%; }
  .section-living .col-image img,
  .section-thank-you .col-image img,
  .section-404 .col-image img {
    display: block;
    width: 65%;
    max-width: 620px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto; }
  .section-living .col-text,
  .section-thank-you .col-text,
  .section-404 .col-text {
    padding-top: 100px;
    padding-right: 40px;
    padding-bottom: 100px;
    padding-left: 40px;
    text-align: center; }
    .section-living .col-text .text,
    .section-thank-you .col-text .text,
    .section-404 .col-text .text {
      margin-right: auto;
      margin-left: auto; }
  @media only screen and (max-width: 640px) {
    .section-living,
    .section-thank-you,
    .section-404 {
      height: auto; }
      .section-living .col-fl-sm-12,
      .section-thank-you .col-fl-sm-12,
      .section-404 .col-fl-sm-12 {
        width: 100%; }
      .section-living .col-text,
      .section-thank-you .col-text,
      .section-404 .col-text {
        padding-right: 20px;
        padding-left: 20px; } }

.section-living .col-image {
  background-image: url(./images/production/src/images/home/PARK_water.jpg); }
  .section-living .col-image .image {
    will-change: transform; }
    .section-living .col-image .image .ani-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      will-change: transform;
      background-position: 50% 50%;
      background-size: contain;
      background-repeat: no-repeat;
      background-image: url(./images/production/src/images/home/6_2175.jpg); }

.section-living .col-text {
  background-color: #EFEFE9; }
  .section-living .col-text .text {
    max-width: 480px; }

.section-living.no-height {
  height: auto; }

@media only screen and (max-width: 640px) {
  .section-living .col-image {
    background-image: url(./images/production/src/images/home/640/PARK_water.jpg); }
    .section-living .col-image .image {
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0); } }

.page-thank-you .app {
  background-color: #4E5148; }

.section-thank-you {
  background-color: #4E5148; }
  .section-thank-you .col-image {
    background-image: url(./images/production/src/images/home/AdobeStock_280273959_2.jpg); }
    .section-thank-you .col-image .image {
      background-image: url(./images/production/src/images/thank-you/3_1687.jpg);
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0); }
  .section-thank-you .col-text {
    background-color: #4E5148; }
    .section-thank-you .col-text .text {
      max-width: 420px; }
  @media only screen and (max-width: 640px) {
    .section-thank-you .col-image {
      background-image: url(./images/production/src/images/home/640/AdobeStock_280273959_2.jpg); } }

.section-404 .col-image {
  background-image: url(./images/production/src/images/404/AdobeStock_356682085_2.jpg); }
  .section-404 .col-image .image {
    background-image: url(./images/production/src/images/404/149607.jpg);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }

.section-404 .col-text {
  background-color: #EFEFE9; }
  .section-404 .col-text .text {
    max-width: 400px; }

@media only screen and (max-width: 640px) {
  .section-404 .col-image {
    background-image: url(./images/production/src/images/404/640/AdobeStock_356682085_2.jpg); } }

