@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Light.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Regular.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Bold.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
html {
  height: 100%;
}

body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: "Neue Einstellung";
  font-weight: 300;
  font-feature-settings: "kern";
  -webkit-font-feature-settings: "kern";
  font-size: 18px;
  margin: 0;
  overflow-x: hidden;
  opacity: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: opacity 0.5s linear;
}

#page-content-wrap {
  flex: 1;
}

body.loaded {
  opacity: 1;
}

a,
a.visited {
  color: #000;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

@media (min-width: 1024.5px) {
  a:after {
    background: #000;
    bottom: -2px;
    content: "";
    height: 0.5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.15s ease;
    width: 0;
  }

  @media (max-width: 500px) {
    a:after {
      transition: none;
    }
  }

  a:hover:after {
    width: 100%;
  }
}

a:hover {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #130367;
  font-weight: 300;
  line-height: 140%;
  margin: 0 0 60px 0;
  padding: 0;
}

h1,
h2 {
  font-size: 42px;
  line-height: 130%;
}

h3 {
  font-size: 38px;
}

h3.h4-style,
h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  line-height: 140%;
  margin: 0 0 30px;
  padding: 0;
}

p:last-child {
  margin: 0;
}

img {
}

iframe {
}

@media (max-width: 890px) {
  body {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 133%;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h3.h4-style,
  h4 {
    font-size: 18px;
  }

  p {
    line-height: 190%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
  align-items: center;
  background: transparent;
  color: #130367;
  display: flex;
  font-size: 12px;
  font-weight: 300;
  height: 90px;
  justify-content: space-between;
  left: 0;
  padding: 0 60px;
  position: fixed;
  right: 0;
  transition: opacity 0.2s linear, background 0.2s ease, box-shadow 0.2s ease;
  top: 0;
  z-index: 100;
}

body.scrolled .header {
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}

body.scrolled.scrolling-up .header {
  opacity: 1;
}

.header .logo {
  display: block;
  height: 37px;
  position: relative;
  transition: height 0.2s ease, width 0.2s ease;
  width: 128px;
  z-index: 101;
}

/*
body.scrolled .header .logo {
    height: 24px;
    width: 82px;
}
*/

.header .logo:after {
  display: none;
}

.header .logo img,
.header .logo svg {
  display: block;
  width: 100%;
}

@media (max-width: 1024px) {
  .header {
    height: 79px;
    padding: 0 35px;
    transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s linear,
      visibility 0.2s linear;
  }

  body.scrolled .header {
    opacity: 0;
    visibility: hidden;
  }

  body.scrolled.scrolling-up .header {
    opacity: 1;
    visibility: visible;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.nav-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .nav-toggle {
    cursor: pointer;
    display: block;
    height: 26px;
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    z-index: 101;
  }

  .nav-toggle > div {
    display: none;
  }

  .nav-toggle:before,
  .nav-toggle:after {
    background: #130367;
    border-radius: 6px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform 0.2s ease, top 0.2s ease;
    width: 100%;
  }

  .nav-toggle:before {
    top: 9px;
  }

  .nav-toggle:after {
    top: 16px;
  }

  body.show-nav .nav-toggle:before {
    top: 12px;
    transform: rotate(-45deg);
  }

  body.show-nav .nav-toggle:after {
    top: 12px;
    transform: rotate(45deg);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap {
  align-items: center;
  display: flex;
}

.primary-navigation-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024.5px) {
  .primary-navigation-wrap ul {
    align-items: center;
    display: flex;
    text-transform: uppercase;
  }

  .primary-navigation-wrap a {
    color: #797878;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .primary-navigation-wrap a:hover,
  .primary-navigation-wrap li.selected > a {
    color: #130367;
  }

  .primary-navigation-wrap li {
    margin-left: 33px;
  }
}

@media (min-width: 1024.5px) and (max-width: 1100px) {
  .primary-navigation-wrap li {
    margin-left: 30px;
  }
}

.primary-navigation-wrap a:after {
  display: none;
}

.primary-navigation-wrap ul ul {
  display: none;
}

@media (max-width: 1024px) {
  .primary-navigation-wrap {
    background: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    overflow-y: scroll; /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
    padding: 120px 35px;
    position: fixed;
    right: -550px;
    top: 0;
    transition: right 0.3s ease, box-shadow 0.3s ease;
    width: 550px;
    z-index: 100;
  }

  body.show-nav .primary-navigation-wrap {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    right: 0;
  }

  .primary-navigation-wrap::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
  }

  .primary-navigation-wrap::-webkit-scrollbar-thumb {
    background-color: #808080;
    border-radius: 5px;
    width: 5px;
  }

  .primary-navigation-wrap li {
  }

  .primary-navigation-wrap li:last-child {
    margin-bottom: 0;
  }

  .primary-navigation-wrap a {
    color: #130367;
    display: block;
    font-size: 32px;
    padding: 23px 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .primary-navigation-wrap ul:hover a {
    opacity: 0.28;
  }

  .primary-navigation-wrap ul li:hover > a,
  .primary-navigation-wrap ul li.selected > a {
    opacity: 1;
  }
}

@media (max-width: 550px) {
  .primary-navigation-wrap {
    right: -100%;
    width: 100%;
  }

  body.show-nav .primary-navigation-wrap {
    right: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.footer {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 60px 60px 100px 60px;
}

.footer .col {
  width: calc(100% / 3);
}

.footer .col:nth-child(2) {
  margin: 0 auto;
}

.footer .col:nth-child(3) {
  text-align: right;
}

.footer p {
  line-height: 110%;
  margin-bottom: 26px;
}

.footer p:nth-child(2) {
  margin-bottom: 15px;
}

.footer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 890.5px) {
  .footer .col:first-child,
  .footer .col:last-child {
    padding-top: 32px;
  }
}

@media (max-width: 890px) {
  .footer {
    flex-direction: column;
  }

  .footer .col {
    text-align: center;
    width: auto;
  }

  .footer .col:first-child {
    margin-bottom: 15px;
    order: 2;
  }

  .footer .col:nth-child(2) {
    margin-bottom: 15px;
    order: 1;
  }

  .footer .col:nth-child(3) {
    order: 3;
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Layouts -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap {
  margin-bottom: 200px;
}

.section-wrap.smaller-margin-bottom {
  margin-bottom: 120px;
}

.section-wrap:last-child,
.section-wrap.very-small-margin-bottom {
  margin-bottom: 60px;
}

.content-block {
  display: block;
  margin-bottom: 50px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: left;
  width: 100%;
}

.content-block p:last-child,
.content-block h2:last-child,
.content-block h3:last-child,
.content-block h4:last-child,
.content-block h5:last-child {
  margin-bottom: 0;
}

.content-block.align-bottom {
  vertical-align: bottom;
}

.content-block img {
  height: auto !important;
  max-width: 100%;
}

.section-wrap-inner {
}

p.align-bottom {
  margin-bottom: 0;
  margin-top: auto;
}

p.align-bottom em {
  font-size: 16px;
}

.content-block ul {
  line-height: 140%;
  padding: 0 0 0 17px;
}

.content-block ul li {
  margin-bottom: 10px;
}

.content-block ul li:last-child {
  margin-bottom: 0;
}

/*
.content-block ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.content-block ul li {
    border-top: 1px solid #000;
    line-height: 140%;
    padding: 30px 0;
}
*/

.content-block.heading-padding-top {
  padding-bottom: 40px;
}

@media (min-width: 890.5px) {
  .content-block.heading-padding-top {
    padding-bottom: 0;
    padding-top: 80px;
  }

  .section-wrap.smaller-text {
    font-size: 18px;
  }

  .section-wrap-inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: 70px;
    margin-right: 70px;
  }

  .section-wrap.align-center .section-wrap-inner {
    justify-content: center;
  }

  .section-wrap.vertical-align-middle .section-wrap-inner {
    align-items: center;
  }

  .section-wrap.align-right .section-wrap-inner {
    justify-content: flex-end;
  }

  .content-block {
    display: block;
    margin-bottom: 0;
    margin-left: 70px;
    margin-right: 70px;
    width: calc(100% - 140px);
  }

  .content-block.col-1,
  .content-block.col-2 {
    display: block;
  }

  .content-block.col-3 {
    width: calc((100% / 3) - 140px);
  }

  .content-block.col-2-3 {
    width: calc(((100% / 3) * 2) - 140px);
  }

  .content-block.col-4,
  .content-block.col-3-4,
  .content-block.col-5,
  .content-block.col-2-5,
  .content-block.col-4-5 {
    width: calc(50% - 140px);
  }

  .content-block.col-2,
  .content-block.col-4 {
    display: flex;
    flex-direction: column;
    width: calc(50% - 140px);
  }

  .narrow-margins .content-block.col-2 {
    width: calc(50% - 140px);
  }

  .content-block.col-4 {
    width: calc(25% - 140px);
  }

  .content-block.col-3-4 {
    width: calc(75% - 140px);
  }

  .content-block.col-5 {
    width: calc(20% - 140px);
  }

  .content-block.col-2-5 {
    width: calc(40% - 140px);
  }

  .content-block.col-3-5 {
    width: calc(60% - 140px);
  }

  .content-block.col-4-5 {
    width: calc(80% - 140px);
  }
}

@media (max-width: 890px) {
  .section-wrap {
    margin-bottom: 60px;
  }

  .content-block {
    margin-left: 35px;
    margin-right: 35px;
    margin-bottom: 35px;
    width: auto;
  }

  .content-block.mobile-full-width {
    margin-left: 0;
    margin-right: 0;
  }

  .content-block:last-child {
    margin-bottom: 0;
  }

  .section-wrap.smaller-text .col-4 {
    border-bottom: 1px solid #000;
    padding-bottom: 35px;
  }

  /*
    .content-block ul li {
        padding: 20px 0;
    }
    */
}

.hide {
  display: none;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Inline Carousels ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.slick-slide {
  outline: none;
  position: relative;
  width: 100%;
}

.slick-slide .image {
  background-color: #000;
  background-size: cover;
}

.slick-slide .image img {
  display: block;
  margin: 0 auto;
  opacity: 0;
  width: 100%;
}

.slick-slide .caption {
  font-size: 18px;
  padding: 60px 40px 30px 40px;
  text-align: center;
}

.slick-prev,
.slick-next {
  background: url(../images/icons/left-arrow.svg) 50% 50% no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  text-indent: -9999px;
  z-index: 20;
  height: 86px;
  bottom: 0;
  transition: opacity 0.2s ease;
  width: 40px;
}

.slick-next {
  background-image: url(../images/icons/right-arrow.svg);
  left: auto;
  right: 0;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.7;
}

.slick-dots {
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 1vw 0 4vw 0;
  position: absolute;
  width: 100%;
  z-index: 52;
}

.slick-dots li {
  display: inline-block;
  margin: 0 0 0 10px;
}

.slick-dots li button {
  background: var(--red);
  border-radius: 100%;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin: 0;
  opacity: 0.1;
  outline: none;
  padding: 0;
  text-indent: -9999px;
  transition: opacity 0.2s ease;
  vertical-align: middle;
  width: 12px;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
  opacity: 1;
}

@media (max-width: 890px) {
  .slick-prev,
  .slick-next {
    background-image: url(../images/icons/mobile-arrow-left.svg);
    bottom: 3px;
    height: 16px;
    width: 8px;
  }

  .slick-next {
    background-image: url(../images/icons/mobile-arrow-right.svg);
  }

  .slick-slide .caption {
    font-size: 16px;
    padding: 20px 40px 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Page Banner / Page Banner with Caption ------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.page-banner {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  position: relative;
}

.section-wrap.page-banner .section-wrap-inner {
  display: none;
}

.section-wrap.page-banner.has-caption:before {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    187deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.section-wrap.page-banner.has-caption .section-wrap-inner {
  color: #fff;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-wrap.page-banner.has-caption h1,
.section-wrap.page-banner.has-caption h2 {
  color: #fff;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 890px) {
  .section-wrap.page-banner.has-caption .section-wrap-inner {
    padding-bottom: 56px;
    flex-direction: column;
    justify-content: flex-end;
  }
}

/* Video Variant */
.section-wrap.page-banner.has-video .content-block.video {
  background-color: #000;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  width: 100%;
}

.section-wrap.page-banner.has-video .content-block.video iframe {
  left: 50%;
  max-width: none;
  min-height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}

@media (min-aspect-ratio: 16/9) {
  .section-wrap.page-banner.has-video .content-block.video iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    min-height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .section-wrap.page-banner.has-video .content-block.video iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

@media (max-width: 600px) {
  .section-wrap.page-banner.has-video .content-block.video iframe {
    left: 80%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Intro Text ----------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.intro-text {
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> 2 Column - Text | Image Locked to Right Edge ------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.two-column-text-image-locked .section-wrap-inner {
  margin-right: 0;
  align-items: center;
}

.section-wrap.two-column-text-image-locked .content-block {
  flex: 1;
}

@media (min-width: 890.5px) {
  .section-wrap.two-column-text-image-locked .content-block:first-child * {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    width: 100%;
  }

  .section-wrap.two-column-text-image-locked .content-block:last-child {
    margin-right: 0;
    min-width: 50%;
  }
}

.section-wrap.two-column-text-image-locked .content-block:last-child img {
  max-width: none;
  width: 100% !important;
}

@media (max-width: 890px) {
  .section-wrap.two-column-text-image-locked .section-wrap-inner {
    display: flex;
    flex-direction: column;
  }

  .section-wrap.two-column-text-image-locked .content-block:first-child {
    order: 2;
  }

  .section-wrap.two-column-text-image-locked .content-block:last-child {
    margin-bottom: 60px;
    order: 1;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> 2 Column - Image Locked to Left Edge | Text -------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.two-column-image-locked-text .section-wrap-inner {
  margin-left: 0;
  align-items: center;
}

.section-wrap.two-column-image-locked-text .content-block {
  flex: 1;
}

.section-wrap.two-column-image-locked-text .content-block:last-child * {
  margin-left: auto;
  margin-right: auto;
  max-width: 536px;
}

.section-wrap.two-column-image-locked-text .content-block:first-child {
  margin-left: 0;
  min-width: 50%;
}

.section-wrap.two-column-image-locked-text .content-block:first-child img {
  max-width: none;
  width: 100% !important;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Full Width Image ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.full-width-image .section-wrap-inner {
  margin: 0;
}

.section-wrap.full-width-image .content-block {
  margin: 0;
  width: 100%;
}

.section-wrap.full-width-image h1,
.section-wrap.full-width-image h2 {
  margin: 0 35px 60px;
}

@media (min-width: 890.5px) {
  .section-wrap.full-width-image h1,
  .section-wrap.full-width-image h2 {
    margin: 0 140px 70px;
  }
}

.section-wrap.full-width-image .content-block img {
  display: block;
  width: 100% !important;
}

@media (max-width: 890px) {
  .section-wrap.full-width-image h1,
  .section-wrap.full-width-image h2 {
    text-align: left !important;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Icon Grid ------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.icon-grid .content-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-wrap.icon-grid .content-block:first-child {
  margin-bottom: 60px;
}

.text-icon-item {
  color: #130367;
  margin: 0 0 30px;
  text-align: center;
  min-width: 118px;
}

.text-icon-item .icon {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 90px;
  justify-content: center;
}

.text-icon-item .icon img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .text-icon-item .icon {
    height: 100px;
  }
}

@media (max-width: 1200px) {
  .text-icon-item .text {
    font-size: 16px;
  }
}

@media (min-width: 1000.5px) {
  .text-icon-item:first-child {
    margin-left: 0;
  }

  .text-icon-item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 890px) {
  .text-icon-item .text {
    font-size: 13px;
  }
}

@media (max-width: 725px) {
  .section-wrap.icon-grid .content-block:not(:first-child) {
    display: inline;
    margin: 0;
  }

  .text-icon-item {
    display: inline-block;
    width: 50%;
  }
}

@media (max-width: 400px) {
  .text-icon-item {
    margin: 0 0 30px 0;
    width: 50%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Dining Section ------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.dining-section .section-wrap-inner {
  display: flex;
  margin-right: 0;
  flex-wrap: wrap;
}

.section-wrap.dining-section .content-block:nth-child(1),
.section-wrap.dining-section .content-block:nth-child(2) {
  flex: 1;
}

.section-wrap.dining-section .content-block:nth-child(1) {
  margin-top: auto;
}

.section-wrap.dining-section .content-block:last-child {
  margin-right: 0;
  min-width: 50%;
}

.section-wrap.dining-section .content-block:last-child p {
  display: flex;
  justify-content: flex-end;
  margin-top: 40%;
  position: relative;
  white-space: nowrap;
}

.section-wrap.dining-section .content-block:last-child img {
  display: inline-block;
}

.section-wrap.dining-section .content-block:last-child img:first-child {
  left: -25%;
  position: absolute;
  top: -50%;
  width: 52% !important;
}

.section-wrap.dining-section .content-block:last-child img:last-child {
  margin-left: 20px;
  width: calc(73% - 20px) !important;
}

@media (max-width: 1490px) {
  .section-wrap.dining-section .content-block:last-child {
    min-width: 40%;
  }
}

@media (max-width: 890px) {
  .section-wrap.dining-section .content-block:nth-child(1) {
    flex: none;
    width: calc(100% - 70px);
  }

  .section-wrap.dining-section .content-block:nth-child(1) {
    order: 3;
  }

  .section-wrap.dining-section .content-block:nth-child(2) {
    margin-bottom: 70px;
    order: 2;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Offices Carousel / Intro --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.offices-carousel-intro {
  margin-bottom: 40px;
}

.section-wrap.offices-carousel ul {
  padding-top: 17px;
}

.section-wrap.offices-carousel li {
  align-items: flex-end;
  border-bottom: 1px solid rgba(19, 3, 103, 0.09);
  color: #130367;
  display: flex;
  padding: 21px 0;
}

.section-wrap.offices-carousel li strong {
  display: inline-block;
  font-size: 32px;
  font-weight: 300;
  width: 100px;
}

.section-wrap.offices-carousel .slick-dots {
  display: none !important;
}

@media (max-width: 890px) {
  .section-wrap.offices-carousel .section-wrap-inner {
    display: flex;
    flex-direction: column;
  }

  .section-wrap.offices-carousel .content-block:last-child {
    order: -1;
    margin-bottom: 70px;
  }

  .section-wrap.offices-carousel ul {
    padding-top: 0;
  }
  /*
    .content-block ul li {
        padding: 30px 0;
    }
    */

  .section-wrap.offices-carousel li strong {
    line-height: 80%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid (General Styling) --------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid {
  margin-bottom: 15px;
}

.section-wrap.image-caption-grid .section-wrap-inner {
  margin: 0;
}

.section-wrap.image-caption-grid .content-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  width: auto;
}

.section-wrap.image-caption-grid .content-block.col-1 {
  width: 100%;
}

.section-wrap.image-caption-grid .content-block figure {
  display: flex;
  font-size: 14px;
  flex-direction: column;
  flex: 1;
  margin-bottom: 15px;
}

.section-wrap.image-caption-grid .content-block figure:last-child {
  margin-bottom: 0;
}

.section-wrap.image-caption-grid .content-block figure .image-wrap {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  margin-bottom: 15px;
}

.section-wrap.image-caption-grid .content-block figure .image-wrap img {
  display: none;
}

figure.image-figure {
  margin: 0;
  padding: 0;
}

figure.image-with-caption figcaption {
  padding: 15px 25px;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid {
    margin-bottom: 55px;
  }

  .section-wrap.image-caption-grid .content-block figure {
    font-size: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid A ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid.type-a .content-block {
  height: 57.7vw;
}

.section-wrap.image-caption-grid.type-a .content-block:first-child {
  min-width: 57.7vw;
  margin-right: 25px;
}

.section-wrap.image-caption-grid.type-a .content-block:first-child figcaption {
  margin-left: 25px;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid.type-a .content-block {
    height: auto;
  }

  .section-wrap.image-caption-grid.type-a .content-block:first-child {
    display: block;
    height: auto;
    margin: 0 0 60px;
    width: 100%;
  }

  .section-wrap.image-caption-grid.type-a .content-block:first-child figure {
    display: block;
    flex: none;
  }

  .section-wrap.image-caption-grid.type-a .content-block:last-child {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-wrap.image-caption-grid.type-a .content-block:last-child figure {
    flex: none;
    width: calc(50% - 12px);
  }

  .section-wrap.image-caption-grid.type-a .content-block .image-wrap {
    display: block;
    flex: none;
    height: 80vw;
  }

  .section-wrap.image-caption-grid.type-a .content-block:first-child figcaption,
  .section-wrap.image-caption-grid.type-a
    .content-block:last-child
    figure:first-child
    figcaption {
    margin-left: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid B ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid.type-b .content-block figure .image-wrap img {
  display: block;
  width: 100% !important;
}

.section-wrap.image-caption-grid.type-b figcaption {
  margin-left: 25px;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid.type-b .content-block figure .image-wrap {
    display: block;
    flex: none;
    height: 70vw;
  }

  .section-wrap.image-caption-grid.type-b
    .content-block
    figure
    .image-wrap
    img {
    display: none;
  }

  .section-wrap.image-caption-grid.type-b figcaption {
    margin-left: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid C ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid.type-c .content-block {
  height: 78.5vw;
}

.section-wrap.image-caption-grid.type-c .content-block:first-child {
  min-width: 53.6vw;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 25px;
}

.section-wrap.image-caption-grid.type-c
  .content-block:first-child
  figure:first-child {
  width: 100%;
  flex: none;
}

.section-wrap.image-caption-grid.type-c
  .content-block:first-child
  figure:nth-child(2) {
  margin-bottom: 0;
  margin-right: 25px;
}

.section-wrap.image-caption-grid.type-c
  .content-block:first-child
  figure:nth-child(3) {
  min-width: calc(57.7% - 25px);
}

.section-wrap.image-caption-grid.type-c .content-block:first-child figcaption {
  margin-left: 25px;
}

.section-wrap.image-caption-grid.type-c
  .content-block:first-child
  figure:last-child
  figcaption {
  margin-left: 0;
}

.section-wrap.image-caption-grid.type-c
  .content-block:last-child
  figure:first-child {
  min-height: 77%;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid.type-c .content-block {
    height: auto;
  }

  .section-wrap.image-caption-grid.type-c .content-block:first-child {
    margin-right: 0;
  }

  .section-wrap.image-caption-grid.type-c
    .content-block:first-child
    figure:first-child {
    margin-bottom: 45px;
    margin-top: 45px;
    order: 99;
  }

  .section-wrap.image-caption-grid.type-c .content-block figure .image-wrap {
    flex: none;
    height: 70vw;
  }

  .section-wrap.image-caption-grid.type-c
    .content-block:first-child
    figcaption {
    margin-left: 15px;
  }

  .section-wrap.image-caption-grid.type-c .content-block:last-child {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-wrap.image-caption-grid.type-c .content-block:last-child figure {
    flex: none;
    width: calc(50% - 12px);
  }

  .section-wrap.image-caption-grid.type-c
    .content-block:last-child
    .image-wrap {
    display: block;
    flex: none;
    height: 80vw;
  }

  .section-wrap.image-caption-grid.type-c
    .content-block:last-child
    figure:first-child
    figcaption {
    margin-left: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid D ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid.type-d {
  margin-bottom: 30px;
}

.section-wrap.image-caption-grid.type-d .content-block {
  height: 89.33vw;
}

.section-wrap.image-caption-grid.type-d .content-block:first-child {
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 25px;
  min-width: 54.6vw;
}

.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:first-child {
  flex: none;
  height: 41.6%;
  width: 100%;
}

.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:nth-child(2),
.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:nth-child(3) {
  min-height: 58.4%;
}

.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:nth-child(2) {
  margin-bottom: 0;
  margin-right: 25px;
}

.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:nth-child(3) {
  min-width: calc(55.2% - 25px);
}

.section-wrap.image-caption-grid.type-d .content-block:first-child figcaption {
  margin-left: 25px;
}

.section-wrap.image-caption-grid.type-d
  .content-block:first-child
  figure:last-child
  figcaption {
  margin-left: 0;
}

.section-wrap.image-caption-grid.type-d .content-block:last-child {
  flex-direction: row;
  flex-wrap: wrap;
}

.section-wrap.image-caption-grid.type-d
  .content-block:last-child
  figure:first-child {
  flex: none;
  min-height: 60%;
  width: 100%;
}

.section-wrap.image-caption-grid.type-d
  .content-block:last-child
  figure:nth-child(2) {
  margin-bottom: 0;
  margin-right: 25px;
  min-height: 40%;
}

.section-wrap.image-caption-grid.type-d
  .content-block:last-child
  figure:nth-child(3) {
  min-height: 40%;
  min-width: 51.4%;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid.type-d .content-block {
    height: auto;
  }

  .section-wrap.image-caption-grid.type-d .content-block:first-child {
    margin-right: 0;
  }

  .section-wrap.image-caption-grid.type-d
    .content-block:first-child
    figure:first-child {
    margin-bottom: 45px;
    margin-top: 45px;
    order: 99;
  }

  .section-wrap.image-caption-grid.type-d .content-block figure .image-wrap {
    flex: none;
    height: 70vw;
  }

  .section-wrap.image-caption-grid.type-d
    .content-block:first-child
    figcaption {
    margin-left: 15px;
  }

  .section-wrap.image-caption-grid.type-d .content-block:last-child {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-wrap.image-caption-grid.type-d .content-block:last-child figure,
  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    figure:nth-child(2),
  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    figure:nth-child(3) {
    flex: none;
    margin: 0;
    min-width: 0;
    width: calc(50% - 12px);
  }

  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    figure:first-child {
    margin-bottom: 45px;
  }

  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    .image-wrap {
    display: block;
    flex: none;
    height: 80vw;
  }

  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    figure:nth-child(2)
    figcaption,
  .section-wrap.image-caption-grid.type-d
    .content-block:last-child
    figure:first-child
    figcaption {
    margin-left: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Image/Caption Grid E ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-caption-grid.type-e {
  margin-bottom: 200px;
}

.section-wrap.image-caption-grid.type-e .content-block {
  height: 37.14vw;
  margin-right: 25px;
}

.section-wrap.image-caption-grid.type-e .content-block:first-child {
  min-width: 52.14vw;
}

.section-wrap.image-caption-grid.type-e .content-block:first-child figcaption {
  margin-left: 30px;
}

.section-wrap.image-caption-grid.type-e .content-block:last-child {
  margin-right: 0;
}

.section-wrap.image-caption-grid.type-e figure {
  margin: 0;
}

@media (max-width: 890px) {
  .section-wrap.image-caption-grid.type-e {
    margin-bottom: 50px;
  }

  .section-wrap.image-caption-grid.type-e .section-wrap-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section-wrap.image-caption-grid.type-e .content-block {
    flex: none;
    height: auto;
    margin-right: 0;
    width: 100%;
  }

  .section-wrap.image-caption-grid.type-e .content-block:first-child {
    margin-bottom: 45px;
  }

  .section-wrap.image-caption-grid.type-e .content-block.col-4 {
    width: calc(50% - 12px);
  }

  .section-wrap.image-caption-grid.type-e .content-block figure .image-wrap {
    flex: none;
    height: 70vw;
  }

  .section-wrap.image-caption-grid.type-e
    .content-block:nth-child(2)
    figcaption,
  .section-wrap.image-caption-grid.type-e
    .content-block:first-child
    figcaption {
    margin-left: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> New Image/Caption Grid (General Styling) --------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.image-grid-new {
  margin-bottom: 0;
}

.section-wrap.image-grid-new .image-wrap img {
  display: none;
}

.section-wrap.image-grid-new .image-wrap {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 0;
  padding-top: 100%;
}

.section-wrap.image-grid-new figcaption {
  font-size: 10px;
  padding: 0;
  padding-top: 5px;
}

@media (min-width: 890.5px) {
  .section-wrap.image-grid-new figure {
    position: relative;
  }

  .section-wrap.image-grid-new figcaption {
    position: absolute;
    top: 100%;
  }

  .section-wrap.image-grid-new .content-block.col-2 {
    width: calc(50% - 90px);
  }

  .section-wrap.image-grid-new .content-block.col-2:first-child {
    margin-right: 20px;
  }

  .section-wrap.image-grid-new .content-block.col-2:last-child {
    margin-left: 20px;
  }

  .section-wrap.image-grid-new.style-a
    .content-block.col-2:first-child
    .image-wrap,
  .section-wrap.image-grid-new.style-b
    .content-block.col-2:last-child
    .image-wrap {
    padding-top: calc(100% + 16px);
  }
}

.section-wrap.image-grid-new.style-a .content-block.col-2:last-child,
.section-wrap.image-grid-new.style-b .content-block.col-2:first-child {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.section-wrap.image-grid-new.style-a .content-block.col-2:last-child figure,
.section-wrap.image-grid-new.style-b .content-block.col-2:first-child figure {
  margin-right: 20px;
  margin-bottom: 56px;
  width: calc(50% - 20px);
}

.section-wrap.image-grid-new.style-a
  .content-block.col-2:last-child
  figure:nth-child(2n),
.section-wrap.image-grid-new.style-b
  .content-block.col-2:first-child
  figure:nth-child(2n) {
  margin-left: 20px;
  margin-right: 0;
}

@media (max-width: 890px) {
  .section-wrap.image-grid-new .content-block.col-2 {
    margin-bottom: 0;
    width: calc(100% - 70px);
  }

  .section-wrap.image-grid-new figure {
    margin-bottom: 20px;
  }

  .section-wrap.image-grid-new.style-b .section-wrap-inner {
    display: flex;
    flex-wrap: wrap;
  }

  .section-wrap.image-grid-new.style-b .content-block.col-2:last-child {
    order: -1;
  }

  .section-wrap.image-grid-new.style-a .content-block.col-2:last-child figure,
  .section-wrap.image-grid-new.style-b
    .content-block.col-2:first-child
    figured {
    margin-right: 10px;
  }

  .section-wrap.image-grid-new.style-a
    .content-block.col-2:last-child
    figure:nth-child(2n),
  .section-wrap.image-grid-new.style-b
    .content-block.col-2:first-child
    figure:nth-child(2n) {
    margin-left: 10px;
  }

  .section-wrap.image-grid-new.style-a .content-block.col-2:last-child figure,
  .section-wrap.image-grid-new.style-b .content-block.col-2:first-child figure {
    margin-bottom: 20px;
    min-width: calc(50% - 20px);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Transportation Section ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.transportation-section {
  order: 9;
  margin-top: 100px;
}

.section-wrap.transportation-section .content-block h4 {
  border-bottom: 1px solid #707070;
  font-size: 21px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.section-wrap.transportation-section .content-block ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

.section-wrap.transportation-section .content-block > ul {
  display: flex;
  flex-wrap: wrap;
}

.section-wrap.transportation-section .content-block > ul > li {
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
  width: calc(100% / 3);
}

.section-wrap.transportation-section .content-block > ul > li > ul {
  margin-top: 8px;
  font-weight: 300;
}

.section-wrap.transportation-section li {
  border: 0;
  font-size: 18px;
  padding: 0;
}

@media (max-width: 550px) {
  .section-wrap.transportation-section {
    margin-top: 45px;
  }

  .section-wrap.transportation-section li {
    font-size: 14px;
  }

  .section-wrap.transportation-section .content-block > ul > li {
    margin-bottom: 10px;
    width: 50%;
  }

  .section-wrap.transportation-section
    .content-block
    > ul
    > li:nth-child(2n + 1) {
    padding-right: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Homepage - Page Styles ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Amenities - Page Styles ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 890px) {
  body.viewing-page-amenities .main-content .wrapper {
    display: flex;
    flex-direction: column;
  }

  body.viewing-page-amenities .main-content .wrapper > div {
    order: 0;
  }

  body.viewing-page-amenities .main-content .wrapper > div:last-child {
    order: 100;
  }

  body.viewing-page-amenities .main-content .wrapper > div:nth-last-child(2) {
    order: 98;
  }

  body.viewing-page-amenities .main-content .wrapper > div:nth-last-child(3) {
    order: 99;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Stacking Plan Styles -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-availability {
  padding-top: 200px;
}

@media (max-width: 600px) {
  body.viewing-page-availability {
    padding-top: 120px;
  }
}

/* stacking plan left side links */
ul.stacking-plan-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.stacking-plan-links li {
  margin-bottom: 0;
}

ul.stacking-plan-links li a {
  border-bottom: 1px solid #130367;
  color: #130367;
  display: flex;
  justify-content: flex-start;
  padding: 8px 0;
  transition: opacity 0.1s linear;
  width: 250px;
}

ul.stacking-plan-links li a:after {
  display: none;
}

ul.stacking-plan-links li a strong {
  font-weight: 300;
  width: 154px;
}

ul.stacking-plan-links li.selected a,
ul.stacking-plan-links li.hovered a,
ul.stacking-plan-links li a:hover {
  opacity: 0.5;
}

@media (max-width: 400px) {
  ul.stacking-plan-links li a {
    width: 100%;
  }
}

/* stacking plan building / image */
.stacking-plan-image-wrap {
  position: relative;
}

@media (min-width: 890.5px) {
  .content-block.stacking-plan-image-wrap {
    margin: 0 auto;
    width: 35vw;
  }
}

.stacking-plan-text-overlay {
  color: #130367;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s linear, visibility 0.2s linear;
  visibility: hidden;
  width: 48%;
}

.stacking-plan-text-overlay strong {
  display: block;
  font-weight: 300;
}

.stacking-plan-text-overlay.hovered {
  opacity: 1;
  visibility: visible;
}

.stacking-plan-text-overlay:after {
  background: #130367;
  content: "";
  height: 0.5px;
  position: absolute;
  right: 0;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.stacking-plan-text-overlay.floor-48 {
  left: -2%;
  top: 24%;
  width: 32%;
}

.stacking-plan-text-overlay.floor-45 {
  left: 0;
  top: 33%;
  width: 63%;
}

.stacking-plan-text-overlay.floor-43 {
  left: -2%;
  top: 19%;
}

.stacking-plan-text-overlay.floor-37 {
  left: -2%;
  top: 28%;
}

.stacking-plan-text-overlay.floor-38 {
  left: 0;
  top: 48%;
  width: 71.5%;
}

.stacking-plan-text-overlay.floor-28 {
  left: -1%;
  top: 41.5%;
}

.stacking-plan-text-overlay.floor-24 {
  left: -1%;
  top: 48%;
}

.stacking-plan-text-overlay.floor-23 {
  left: 0%;
  top: 49.5%;
}

@media (max-width: 1250px) and (min-width: 890.5px) {
  .content-block.stacking-plan-image-wrap {
    margin: 0 0 0 auto;
    width: 50vw;
  }
}

@media (max-width: 1150px) and (min-width: 890.5px) {
  .section-wrap.stacking-plan .section-wrap-inner {
    margin-left: 25px;
    margin-right: 25px;
  }

  .section-wrap.stacking-plan .content-block.col-3 {
    margin-left: 25px;
    margin-right: 25px;
    width: calc((100% / 3) - 50px);
  }
}

@media (max-width: 600px) {
  .stacking-plan-text-overlay.floor-48 {
    top: 23%;
  }
  .stacking-plan-text-overlay.floor-43 {
    top: 18%;
  }
  .stacking-plan-text-overlay.floor-37 {
    top: 27%;
  }
  .stacking-plan-text-overlay.floor-28 {
    top: 40.5%;
  }
  .stacking-plan-text-overlay.floor-24 {
    top: 47%;
  }
  .stacking-plan-text-overlay.floor-23 {
    top: 48.5%;
  }
}

#stacking-plan-svg {
  display: block;
  margin: 0 auto;
  height: auto !important;
  width: 100% !important;
}

.floor-hover {
  cursor: pointer;
  transition: opacity 0.1s ease;
}

.floor-hover:hover,
.floor-hover.hovered {
  opacity: 0.3;
}

/* Overlays */
.stacking-plan-overlays,
.floorplan-overlay .floorplan-id {
  display: none;
}

.floorplan-overlay-wrap {
  background: #fff;
  border: 1px solid #707070;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  left: 50%;
  max-width: 90vw;
  width: 1280px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1001;
}

.floorplan-overlay-wrap .floorplan-overlay {
}

.floorplan-image {
  padding: 15px;
}

.floorplan-image img {
  display: block;
  height: auto !important;
  max-width: 100%;
}

.floorplan-overlay-bottom-bar {
  background: #140066 url(../images/icons/9w57-logo-white.svg) 50px 26px
    no-repeat;
  background-size: 106px auto;
  color: #fff;
  padding: 80px 50px 25px;
}

.floorplan-overlay-bottom-bar .floorplan-title {
  border-right: 1px solid #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 100%;
  margin-right: 15px;
  padding-right: 15px;
}

.floorplan-overlay-bottom-bar .floorplan-sq-ft {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 100%;
}

.floorplan-overlay-bottom-bar .cbre-info {
  align-items: center;
  bottom: 25px;
  display: flex;
  font-size: 13px;
  position: absolute;
  right: 50px;
}

.floorplan-overlay-bottom-bar .cbre-info img {
  border-right: 0.25px solid #fff;
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
}

.floorplan-download a {
  background: url(../images/icons/download-icon.svg) 50% 50% no-repeat;
  background-size: contain;
  bottom: -40px;
  height: 34px;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  transition: opacity 0.1s linear;
  width: 34px;
}

.floorplan-download a:after {
  display: none;
}

.floorplan-download a:hover {
  opacity: 0.7;
}

#close-floorplan-overlay-link {
  background: url(../images/icons/overlay-close-x.svg) 50% 50% no-repeat;
  height: 21px;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: -30px;
  transition: opacity 0.1s linear;
  width: 21px;
}

#close-floorplan-overlay-link:after {
  display: none;
}

#close-floorplan-overlay-link:hover {
  opacity: 0.7;
}

.floorplan-underlay {
  background: #fff;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

@media (max-width: 700px) {
  .floorplan-overlay-bottom-bar {
    background-position: 20px 20px;
    background-size: 50px auto;
    padding: 47px 20px 14px;
  }

  .floorplan-overlay-bottom-bar .floorplan-title {
    font-size: 15px;
    margin-right: 10px;
    padding-right: 10px;
  }

  .floorplan-overlay-bottom-bar .floorplan-sq-ft {
    font-size: 15px;
  }

  .floorplan-overlay-bottom-bar .cbre-info {
    font-size: 11px;
    margin-top: 10px;
    position: static;
  }
  .floorplan-overlay-bottom-bar .cbre-info img {
    margin-right: 10px;
    padding-right: 10px;
    width: 53px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Team - Page Styles ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-team {
  padding-top: 250px;
}

body.viewing-page-team .section-wrap {
  margin-bottom: 100px;
}

body.viewing-page-team .col-2 h2 {
  margin-bottom: 90px;
}

body.viewing-page-team .col-2 h3.h4-style {
  font-weight: 300;
}

body.viewing-page-team .section-wrap.team-lower .section-wrap-inner {
  padding: 36px 0;
  position: relative;
}

body.viewing-page-team .section-wrap.team-lower .section-wrap-inner:before,
body.viewing-page-team .section-wrap.team-lower .section-wrap-inner:after {
  background: #130367;
  content: "";
  height: 1px;
  left: 36px;
  right: 36px;
  position: absolute;
  top: 0;
}

body.viewing-page-team .section-wrap.team-lower .section-wrap-inner:after {
  bottom: 0;
  top: auto;
}

@media (min-width: 890.5px) {
  body.viewing-page-team .section-wrap.team-lower .section-wrap-inner {
    padding: 72px 40px;
  }

  body.viewing-page-team .section-wrap.team-lower .section-wrap-inner:before,
  body.viewing-page-team .section-wrap.team-lower .section-wrap-inner:after {
    left: 70px;
    right: 70px;
  }

  body.viewing-page-team .team-lower .col-5 {
    font-size: 16px;
    margin: 0 30px;
    width: calc(20% - 60px);
  }
}

@media (max-width: 1600px) {
  body.viewing-page-team .col-2 h2 {
    font-size: 35px;
  }
}

@media (max-width: 890px) {
  body.viewing-page-team {
    padding-top: 150px;
  }

  body.viewing-page-team .content-block.col-2 {
    margin-bottom: 70px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Neighborhood - Toggler Styles ----------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-neighborhood {
  padding-top: 250px;
}

body.viewing-page-neighborhood .main-content .wrapper {
  display: flex;
  flex-direction: column;
}

.section-wrap.neighborhood-controls-section {
  margin-bottom: 0;
  order: 0;
  padding-top: 5px;
  position: absolute;
  right: 0;
  z-index: 5;
}

.section-wrap.neighborhood-controls-section .neighborhood-controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.section-wrap.neighborhood-controls-section .neighborhood-controls li {
  display: inline-block;
  border: 0;
  margin: 0 0 0 15px;
  padding: 0;
}

.section-wrap.neighborhood-controls-section .neighborhood-controls li a {
  background: url(../images/icons/grid-icon.svg) 50% 50% no-repeat;
  background-size: contain;
  color: transparent;
  display: block;
  font-size: 0px;
  opacity: 0.5;
  filter: grayscale(100%);
  height: 22px;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: 22px;
}

.section-wrap.neighborhood-controls-section .neighborhood-controls li a:after {
  display: none;
}

.section-wrap.neighborhood-controls-section .neighborhood-controls li a.map {
  background-image: url(../images/icons/pin-icon.svg);
  height: 26px;
  width: 16px;
}

.section-wrap.neighborhood-controls-section
  .neighborhood-controls
  li.selected
  a {
  filter: none;
  opacity: 1;
}

@media (min-width: 890.5px) {
  body.map-view .section-wrap.very-small-margin-bottom {
    margin-bottom: 0;
  }

  body.map-view .section-wrap.very-small-margin-bottom .content-block {
    margin-left: 30px;
  }

  body.map-view
    .section-wrap.neighborhood-controls-section
    .section-wrap-inner {
    margin: 0;
  }

  body.map-view .section-wrap.neighborhood-controls-section .content-block {
    margin-left: 90px;
    margin-right: 40px;
  }
}

@media (max-width: 890px) {
  body.viewing-page-neighborhood {
    padding-top: 150px;
  }

  .section-wrap.neighborhood-controls-section {
    padding-top: 0;
    position: relative;
  }

  body.map-view .section-wrap.neighborhood-controls-section {
    padding-top: 90px;
    position: absolute;
  }

  .section-wrap.very-small-margin-bottom {
    order: -1;
    margin-bottom: 0;
  }

  .section-wrap.very-small-margin-bottom h1 {
    margin-bottom: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Neighborhood - Map Styles --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.neighborhood-map-section {
  order: 0;
}

.section-wrap.neighborhood-map-section .section-wrap-inner,
.section-wrap.neighborhood-map-section .content-block {
  margin: 0;
  width: 100%;
}

.section-wrap.neighborhood-map-section
  .content-block.neighborhood-map-content-box {
  display: flex;
  flex-wrap: wrap;
}

.category-list-wrap {
  margin-bottom: 30px;
  padding-right: 30px;
  text-align: right;
  width: 100%;
}

.category-list-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-wrap.neighborhood-map-section .category-list-wrap li {
  display: inline-block;
  border: 0;
  margin-left: 5px;
  padding: 0;
}

.category-list-wrap a {
  border-radius: 50px;
  border: 1px solid transparent;
  color: #130367;
  display: inline-block;
  font-size: 16px;
  padding: 5px 20px;
  transition: border 0.2s ease;
}

.category-list-wrap a:after {
  display: none;
}

.category-list-wrap a:hover,
.category-list-wrap a.selected {
  border: 1px solid #130367;
}

.location-list-wrap {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  padding-right: 20px;
  width: 500px;
}

.location-category-list {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: space-between;
}

.location-category-list.show {
  display: flex;
}

.location-category-list h4 {
  display: none;

  font-size: 21px;
  font-weight: 400;
  margin-bottom: 20px;
}

.locations-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.locations-list li {
  margin-bottom: 8px;
}

.locations-list a {
  font-size: 18px;
}

.locations-list a.selected:after {
  width: 100%;
}

.featured-location {
  margin-top: auto;

  display: none;
}

.featured-location figcaption {
  font-size: 17px;
  margin-top: 5px;
}

.map-container {
  min-height: 943px;
  width: calc(100% - 500px);
}

.gm-style-iw-t {
  bottom: 0 !important;
}

.custom-marker {
  background: #000;
  border-radius: 100%;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 13px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 21px;
  position: relative;
  text-align: center;
  transition: height 0.3s ease, width 0.3s ease;
  width: 32px;
}

.custom-marker:after {
  background-color: inherit;
  bottom: -21px;
  content: "";
  height: 21px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: height 0.3s ease, bottom 0.3s ease;
  width: 3px;
}

.custom-marker:hover {
  z-index: 10000 !important;
}

.custom-marker.selected {
  z-index: 10000 !important;
  height: 36px;
  margin-bottom: 17px;
  width: 36px;
}

.custom-marker.selected:after {
  bottom: -17px;
  height: 17px;
}

.custom-marker.main-location {
  background: url(../images/icons/main-location-pin.svg) 50% 50% no-repeat;
  background-size: contain;
  border-radius: 0;
  display: block;
  height: 52px;
  width: 33px;
}

.gm-style .gm-style-iw-t {
  margin-bottom: 12px;
}

.gm-style .gm-style-iw-c {
  background: #fff;
  color: #000;
  border-radius: 0;
  box-shadow: none;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

.gm-style .gm-style-iw-t::after {
  background: #fff;
}

.marker-content {
  max-width: 220px;
  padding: 0 20px 20px 0;
}

.marker-content > div {
  margin-bottom: 10px;
}

.marker-content > div:last-child {
  margin: 0;
}

.marker-content .title {
  font-family: "Suisse Int'l Cond";
  font-size: 16px;
  font-weight: 500;
}

.marker-content .tagline {
  font-family: "Suisse Int'l";
  line-height: 150%;
}

@media (max-width: 890px) {
  .section-wrap.neighborhood-map-section
    .content-block.neighborhood-map-content-box {
    display: block;
  }

  .category-list-wrap {
    margin: 0 30px 30px;
    padding-top: 10px;
    text-align: left;
    width: auto;
  }

  .section-wrap.neighborhood-map-section .category-list-wrap li {
    display: block;
    margin: 0 5px 5px;
    text-align: left;
  }

  .location-category-list {
    flex-direction: row;
    flex-wrap: wrap;

    display: none;
  }

  .heading-and-list {
    padding-bottom: 30px;
    /*width: 50%;*/
    width: 100%;
  }

  .featured-location {
    width: 50%;
  }

  .featured-location img {
    display: block;
    max-width: none;
    width: 100% !important;
  }

  .featured-location figcaption {
    display: none;
  }

  .location-list-wrap {
    display: none;

    padding: 0 0 0 30px;
    width: 100%;
  }

  .map-container {
    height: 449px;
    min-height: 0;
    width: 100%;
  }
}

@media (max-width: 550px) {
  .category-list-wrap {
    margin: 0 30px 30px;
    padding: 10px 0 0 0;
  }

  .category-list-wrap a {
    font-size: 12px;
    padding: 3px 13px;
  }

  .heading-and-list {
    padding-right: 20px;
  }

  .locations-list a {
    font-size: 12px;
  }

  .featured-location {
    display: flex;
    flex: 1;
    margin: 0;
    display: none;
  }

  figure.image-figure {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  figure.image-with-caption figcaption {
    padding: 10px 15px;
  }

  /*
    figure.image-figure img {
        height: 100% !important;
        left: 50%;
        min-width: 100%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
        width: auto !important;
    }
    */
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contact Page / Form Styles -------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap#contact-page-banner {
  display: none;
}

body.viewing-page-contact .section-wrap#contact-page-banner {
  display: block;
}

form {
}

.section-wrap.inquiries-form-section .content-block h2 {
  margin-bottom: 60px;
}

.field-wrap {
  margin-bottom: 40px;
}

.field-wrap label {
  display: none;
}

.field-wrap,
.field-wrap input[type="text"],
.field-wrap select {
  color: #000;
  font-family: "Neue Einstellung";
  font-size: 18px;
  font-weight: 300;
}

.field-wrap label {
  display: none;
}

.field-wrap input[type="text"],
.field-wrap select {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #130367;
  box-shadow: none;
  color: #130367;
  display: block;
  outline: none;
  padding: 8px 0;
  width: 100%;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #130367;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #130367;
}

::placeholder {
  color: #130367;
}

.error-msg {
  color: red;
  font-size: 16px;
  margin-left: 10px;
  margin-top: 10px;
}

.submit-wrap {
  margin-top: 35px;
  text-align: right;
}

.submit-wrap .button {
  background: transparent;
  border-radius: 50px;
  border: 1px solid #130367;
  color: #130367;
  display: inline-block;
  font-family: "Neue Einstellung";
  font-size: 19px;
  font-weight: 300;
  padding: 12px 40px;
  transition: background 0.2s ease, color 0.2s ease;
}

.submit-wrap .button:hover {
  background: #130367;
  color: #fff;
}

.submit-wrap .button:after {
  display: none;
}

@media screen and (max-width: 890px) {
  .section-wrap.inquiries-form-section .content-block h2 {
    font-size: 32px;
  }

  form {
    margin: 0;
  }

  .field-wrap input[type="text"],
  .field-wrap select {
    font-size: 18px;
    padding: 10px 0;
  }

  .submit-wrap .button {
    font-size: 13px;
  }

  body.viewing-page-contact .very-small-margin-bottom {
    margin-bottom: 35px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contact Form Styles --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.contact-form .form-group label {
  font-weight: 400;
  color: #130367;
}

.contact-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.address-block {
  max-width: 10em;
  margin: auto;
}

@media (min-width: 890.5px) {
  body.viewing-page-contact .intro-section {
    padding-bottom: 0;
  }
}

@media (max-width: 890px) {
  body.viewing-page-contact .intro-section {
    padding-top: 150px;
  }
}

.contact-form-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group h3 {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--default-font-family);
  font-size: 18px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  padding: 12px 20px;
  background-color: #130367;
  color: white;
  border: none;
  cursor: pointer;
  align-self: center;
  margin-top: 20px;
  font-family: var(--default-font-family);
  font-size: 11px;
  width: 200px;
  font-weight: 400;
  letter-spacing: 1px;
}

.submit-button:hover {
  filter: brightness(85%);
}

.recaptcha-dislcaimer {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
}

@media (min-width: 890px) {
  .form-row .form-group {
    width: 48%;
  }

  .contact-form-container {
    margin-top: 80px;
  }

  .submit-button {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Loading Spinner Overlay ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.loading-overlay {
  background: rgba(255, 255, 255, 0.7);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100000;
}

.lds-ring {
  display: inline-block;
  height: 80px;
  left: 50%;
  opacity: 0.3;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}

.lds-ring div {
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border: 8px solid #000;
  border-color: #000 transparent transparent transparent;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  height: 64px;
  margin: 8px;
  position: absolute;
  width: 64px;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Thank You Page Styles ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-thank-you .section-wrap:first-child {
  margin-top: 150px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* 404 Page Styles ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-404 .section-wrap:first-child {
  margin-top: 150px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Responsive Styles ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#mobile-check-element {
  display: none;
}

@media (max-width: 1024px) {
  #mobile-check-element {
    display: block;
  }
}

@media (max-width: 890px) {
  .br-wrap,
  .br-wrap:before {
    content: " ";
  }

  .br-wrap br {
    display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Button Styles --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #170769;
  bottom: 9px;
  color: #170769;
  display: inline-block;
  font-size: 14px;
  line-height: 100%;
  padding: 15px 25px;
  text-decoration: none;
}

.button:after {
  display: none;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Back to Top Link Styles ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.back-to-top-link {
  background-color: #fff;
  background-image: url(../images/icons/back-to-top-arrow.svg);
  background-position: calc(100% - 22px) 50%;
  background-repeat: no-repeat;
  background-size: 15px auto;
  border-radius: 50px;
  border: 1px solid #170769;
  bottom: 30px;
  color: #170769;
  font-size: 14px;
  line-height: 100%;
  opacity: 0;
  padding: 15px 45px 15px 25px;
  position: fixed;
  right: 30px;
  text-decoration: none;
  transition: opacity 0.2s linear, visibility 0.2s linear,
    background-color 0.2s ease;
  visibility: hidden;
  z-index: 100;
}

body.well-past-intro .back-to-top-link {
  opacity: 1;
  visibility: visible;
}

body.well-past-intro .back-to-top-link:hover {
  background-color: #fff;
}

.back-to-top-link:after {
  display: none;
}

.grecaptcha-badge {
  left: 0 !important;
  opacity: 0;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  visibility: hidden;
  width: 70px !important;
}

body.at-form-section .grecaptcha-badge {
  opacity: 1;
  visibility: visible;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Overlay                 ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.thank-you-message {
  text-align: center;
}

body.show-overlay:before {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: 1001;
}

body.show-overlay .form,
body.show-overlay .footer {
  opacity: 0.3;
}

.overlay-content {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  left: 50%;
  max-height: calc(100vh - 60px);
  max-width: calc(100vw - 60px);
  opacity: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 75px 100px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  width: 1252px;
  z-index: 1002;
}

.overlay-content.thank-you-message {
  background: #fff;
  padding: 75px 50px;
  width: 800px;
}

.overlay-content.show {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s linear, visibility 0.5s linear;
  visibility: visible;
}

.overlay-content p,
.overlay-content ul {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
}

.overlay-content p a,
.overlay-content ul a {
  border-bottom: 1px solid;
  color: #000;
  text-decoration: none;
}

.overlay-content h3 {
  margin-bottom: 30px;
}

.overlay-content h3:not(:nth-child(2)) {
  margin-top: 60px;
}

.close-overlay-link,
.close-apply-sidebar-link,
.share-overlay-close-x {
  background: url(../images/icons/close-x.svg) 50% 50% no-repeat;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -9999px;
  top: 30px;
  width: 20px;
}

.share-overlay-close-x {
  right: auto;
  left: 12px;
  top: 12px;
}

.close-apply-sidebar-link {
  right: 4px;
  top: 6px;
}

.thank-you-message .close-overlay-link,
.close-apply-sidebar-link {
  background-image: url(../images/icons/close-x.svg);
}

.close-overlay-link:hover {
  opacity: 0.7;
}

.thank-you-message {
  font-family: "Neue Einstellung";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

body.show-overlay .thank-you-message {
  display: block;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Legal ------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
  .grecaptcha-badge {
    visibility: hidden;
  }
  
  .viewing-page-legal ul {
    list-style-position: outside;
    padding-inline-start: 50px;
  }
  
  .viewing-page-legal li {
    padding-inline-start: 15px;
    margin-top: 10px;
  }
  
  
  @media (max-width: 890px) {
    .viewing-page-legal h4 {
      font-size: 16px;
    }
  
    .viewing-page-legal ul {
      padding-inline-start: 30px;
    }
  
    .viewing-page-legal li {
      padding-inline-start: 0px;
    }
  }
  

.viewing-page-legal strong, .viewing-page-legal b{
    font-weight: 500;
}

.viewing-page-legal h4{
    font-size: 20px;
}