@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }
}

.container-wide {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .container-wide {
    max-width: 792px;
  }
}
@media (min-width: 992px) {
  .container-wide {
    max-width: 1056px;
  }
}
@media (min-width: 1300px) {
  .container-wide {
    max-width: 1287px;
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1617px;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .container-fluid {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container-fluid {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    max-width: 1470px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}

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

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (min-width: 1300px) {
  html {
    font-size: 18px;
  }
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  font-family: neue-haas-unica, sans-serif;
  line-height: 1.5;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.page-wrapper {
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper.theme-colour {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.page-wrapper.theme-colour--purple {
  background-color: #C08BBD !important;
}
.page-wrapper.theme-colour--blue {
  background-color: #6293CC !important;
}
.page-wrapper.theme-colour--green {
  background-color: #9CC27E !important;
}
.page-wrapper.theme-colour--coral {
  background-color: #E28587 !important;
}

.heading-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.heading-img img {
  display: block;
}
.heading-img img.desktop {
  display: none;
}
@media (min-width: 768px) {
  .heading-img img.desktop {
    display: block;
  }
}
.heading-img img.mobile {
  display: block;
}
@media (min-width: 768px) {
  .heading-img img.mobile {
    display: none;
  }
}

hr {
  height: 1px;
  background-color: #989898;
  border: none;
  padding: 0;
  margin: 0;
}
hr.desktop {
  display: none;
}
@media (min-width: 768px) {
  hr.desktop {
    display: block;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 100%;
  color: #FFFFFF;
  background-color: #000000;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  position: relative;
  line-height: 1;
  padding-bottom: 0.1em;
  transition: all 0.2s, outline 0s;
}
.button:not(:first-of-type) {
  margin-top: 10px;
}
.button img {
  display: none;
}
.button--download img {
  display: block;
  margin-left: 10px;
  width: auto;
  height: 26px;
}
.button--green {
  background-color: #1D4F4B;
}
.button--blue {
  background-color: #04A8B7;
}
.button--red {
  background-color: #BA3E26;
}
.button--orange {
  background-color: #F3954A;
}
.button--black {
  background-color: #000000;
}
.button--hover-outline {
  outline: 1px solid #000000;
  outline-offset: -1px;
}
.button--hover-outline:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.expandable-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.expandable-wrapper.hidden {
  display: none;
}
.expandable-wrapper .expandable {
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 500;
  font-size: 28px;
  padding-bottom: 8px;
}
@media (min-width: 1300px) {
  .expandable-wrapper .expandable {
    font-size: 36px;
  }
}
.expandable-wrapper span {
  height: 1px;
  display: block;
  background: #989898;
  flex: 1;
}
.expandable-wrapper span:nth-of-type(1) {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .expandable-wrapper span:nth-of-type(1) {
    margin-right: 20px;
  }
}
.expandable-wrapper span:nth-of-type(2) {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .expandable-wrapper span:nth-of-type(2) {
    margin-left: 20px;
  }
}

.draggable {
  overflow: scroll;
  scrollbar-width: none;
}
.draggable::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .draggable {
    overflow: hidden;
    cursor: -webkit-grab;
    cursor: grab;
  }
}

.underline {
  display: inline-block;
  transition: 0.2s;
  position: relative;
}
.underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.underline::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.underline--grey::after {
  background-color: #989898;
}
.underline--black::after {
  background-color: #989898;
}

.rellax-wrapper {
  position: absolute;
}
.rellax-wrapper img {
  display: block;
}

.rellax {
  transition: transform 0.7s;
}

@media (min-width: 768px) {
  .w-0 {
    width: 0% !important;
  }
}

@media (min-width: 768px) {
  .w-1 {
    width: 1% !important;
  }
}

@media (min-width: 768px) {
  .w-2 {
    width: 2% !important;
  }
}

@media (min-width: 768px) {
  .w-3 {
    width: 3% !important;
  }
}

@media (min-width: 768px) {
  .w-4 {
    width: 4% !important;
  }
}

@media (min-width: 768px) {
  .w-5 {
    width: 5% !important;
  }
}

@media (min-width: 768px) {
  .w-6 {
    width: 6% !important;
  }
}

@media (min-width: 768px) {
  .w-7 {
    width: 7% !important;
  }
}

@media (min-width: 768px) {
  .w-8 {
    width: 8% !important;
  }
}

@media (min-width: 768px) {
  .w-9 {
    width: 9% !important;
  }
}

@media (min-width: 768px) {
  .w-10 {
    width: 10% !important;
  }
}

@media (min-width: 768px) {
  .w-11 {
    width: 11% !important;
  }
}

@media (min-width: 768px) {
  .w-12 {
    width: 12% !important;
  }
}

@media (min-width: 768px) {
  .w-13 {
    width: 13% !important;
  }
}

@media (min-width: 768px) {
  .w-14 {
    width: 14% !important;
  }
}

@media (min-width: 768px) {
  .w-15 {
    width: 15% !important;
  }
}

@media (min-width: 768px) {
  .w-16 {
    width: 16% !important;
  }
}

@media (min-width: 768px) {
  .w-17 {
    width: 17% !important;
  }
}

@media (min-width: 768px) {
  .w-18 {
    width: 18% !important;
  }
}

@media (min-width: 768px) {
  .w-19 {
    width: 19% !important;
  }
}

@media (min-width: 768px) {
  .w-20 {
    width: 20% !important;
  }
}

@media (min-width: 768px) {
  .w-21 {
    width: 21% !important;
  }
}

@media (min-width: 768px) {
  .w-22 {
    width: 22% !important;
  }
}

@media (min-width: 768px) {
  .w-23 {
    width: 23% !important;
  }
}

@media (min-width: 768px) {
  .w-24 {
    width: 24% !important;
  }
}

@media (min-width: 768px) {
  .w-25 {
    width: 25% !important;
  }
}

@media (min-width: 768px) {
  .w-26 {
    width: 26% !important;
  }
}

@media (min-width: 768px) {
  .w-27 {
    width: 27% !important;
  }
}

@media (min-width: 768px) {
  .w-28 {
    width: 28% !important;
  }
}

@media (min-width: 768px) {
  .w-29 {
    width: 29% !important;
  }
}

@media (min-width: 768px) {
  .w-30 {
    width: 30% !important;
  }
}

@media (min-width: 768px) {
  .w-31 {
    width: 31% !important;
  }
}

@media (min-width: 768px) {
  .w-32 {
    width: 32% !important;
  }
}

@media (min-width: 768px) {
  .w-33 {
    width: 33% !important;
  }
}

@media (min-width: 768px) {
  .w-34 {
    width: 34% !important;
  }
}

@media (min-width: 768px) {
  .w-35 {
    width: 35% !important;
  }
}

@media (min-width: 768px) {
  .w-36 {
    width: 36% !important;
  }
}

@media (min-width: 768px) {
  .w-37 {
    width: 37% !important;
  }
}

@media (min-width: 768px) {
  .w-38 {
    width: 38% !important;
  }
}

@media (min-width: 768px) {
  .w-39 {
    width: 39% !important;
  }
}

@media (min-width: 768px) {
  .w-40 {
    width: 40% !important;
  }
}

@media (min-width: 768px) {
  .w-41 {
    width: 41% !important;
  }
}

@media (min-width: 768px) {
  .w-42 {
    width: 42% !important;
  }
}

@media (min-width: 768px) {
  .w-43 {
    width: 43% !important;
  }
}

@media (min-width: 768px) {
  .w-44 {
    width: 44% !important;
  }
}

@media (min-width: 768px) {
  .w-45 {
    width: 45% !important;
  }
}

@media (min-width: 768px) {
  .w-46 {
    width: 46% !important;
  }
}

@media (min-width: 768px) {
  .w-47 {
    width: 47% !important;
  }
}

@media (min-width: 768px) {
  .w-48 {
    width: 48% !important;
  }
}

@media (min-width: 768px) {
  .w-49 {
    width: 49% !important;
  }
}

@media (min-width: 768px) {
  .w-50 {
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .w-51 {
    width: 51% !important;
  }
}

@media (min-width: 768px) {
  .w-52 {
    width: 52% !important;
  }
}

@media (min-width: 768px) {
  .w-53 {
    width: 53% !important;
  }
}

@media (min-width: 768px) {
  .w-54 {
    width: 54% !important;
  }
}

@media (min-width: 768px) {
  .w-55 {
    width: 55% !important;
  }
}

@media (min-width: 768px) {
  .w-56 {
    width: 56% !important;
  }
}

@media (min-width: 768px) {
  .w-57 {
    width: 57% !important;
  }
}

@media (min-width: 768px) {
  .w-58 {
    width: 58% !important;
  }
}

@media (min-width: 768px) {
  .w-59 {
    width: 59% !important;
  }
}

@media (min-width: 768px) {
  .w-60 {
    width: 60% !important;
  }
}

@media (min-width: 768px) {
  .w-61 {
    width: 61% !important;
  }
}

@media (min-width: 768px) {
  .w-62 {
    width: 62% !important;
  }
}

@media (min-width: 768px) {
  .w-63 {
    width: 63% !important;
  }
}

@media (min-width: 768px) {
  .w-64 {
    width: 64% !important;
  }
}

@media (min-width: 768px) {
  .w-65 {
    width: 65% !important;
  }
}

@media (min-width: 768px) {
  .w-66 {
    width: 66% !important;
  }
}

@media (min-width: 768px) {
  .w-67 {
    width: 67% !important;
  }
}

@media (min-width: 768px) {
  .w-68 {
    width: 68% !important;
  }
}

@media (min-width: 768px) {
  .w-69 {
    width: 69% !important;
  }
}

@media (min-width: 768px) {
  .w-70 {
    width: 70% !important;
  }
}

@media (min-width: 768px) {
  .w-71 {
    width: 71% !important;
  }
}

@media (min-width: 768px) {
  .w-72 {
    width: 72% !important;
  }
}

@media (min-width: 768px) {
  .w-73 {
    width: 73% !important;
  }
}

@media (min-width: 768px) {
  .w-74 {
    width: 74% !important;
  }
}

@media (min-width: 768px) {
  .w-75 {
    width: 75% !important;
  }
}

@media (min-width: 768px) {
  .w-76 {
    width: 76% !important;
  }
}

@media (min-width: 768px) {
  .w-77 {
    width: 77% !important;
  }
}

@media (min-width: 768px) {
  .w-78 {
    width: 78% !important;
  }
}

@media (min-width: 768px) {
  .w-79 {
    width: 79% !important;
  }
}

@media (min-width: 768px) {
  .w-80 {
    width: 80% !important;
  }
}

@media (min-width: 768px) {
  .w-81 {
    width: 81% !important;
  }
}

@media (min-width: 768px) {
  .w-82 {
    width: 82% !important;
  }
}

@media (min-width: 768px) {
  .w-83 {
    width: 83% !important;
  }
}

@media (min-width: 768px) {
  .w-84 {
    width: 84% !important;
  }
}

@media (min-width: 768px) {
  .w-85 {
    width: 85% !important;
  }
}

@media (min-width: 768px) {
  .w-86 {
    width: 86% !important;
  }
}

@media (min-width: 768px) {
  .w-87 {
    width: 87% !important;
  }
}

@media (min-width: 768px) {
  .w-88 {
    width: 88% !important;
  }
}

@media (min-width: 768px) {
  .w-89 {
    width: 89% !important;
  }
}

@media (min-width: 768px) {
  .w-90 {
    width: 90% !important;
  }
}

@media (min-width: 768px) {
  .w-91 {
    width: 91% !important;
  }
}

@media (min-width: 768px) {
  .w-92 {
    width: 92% !important;
  }
}

@media (min-width: 768px) {
  .w-93 {
    width: 93% !important;
  }
}

@media (min-width: 768px) {
  .w-94 {
    width: 94% !important;
  }
}

@media (min-width: 768px) {
  .w-95 {
    width: 95% !important;
  }
}

@media (min-width: 768px) {
  .w-96 {
    width: 96% !important;
  }
}

@media (min-width: 768px) {
  .w-97 {
    width: 97% !important;
  }
}

@media (min-width: 768px) {
  .w-98 {
    width: 98% !important;
  }
}

@media (min-width: 768px) {
  .w-99 {
    width: 99% !important;
  }
}

@media (min-width: 768px) {
  .w-100 {
    width: 100% !important;
  }
}

[id] {
  scroll-margin-top: 60px;
}
@media (min-width: 992px) {
  [id] {
    scroll-margin-top: 110px;
  }
}

::-moz-selection {
  background-color: #000000;
  color: #FFFFFF;
}

::selection {
  background-color: #000000;
  color: #FFFFFF;
}

.consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s;
  background-color: rgba(98, 51, 55, 0.75);
  z-index: 9999;
  pointer-events: none;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 20px 0px;
}
@media (min-width: 768px) {
  .consent {
    padding: 25px 0px;
  }
}
.consent--visible {
  transform: translateY(0);
}

.consent-inner {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  gap: 10px;
}
@media (min-width: 768px) {
  .consent-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
  }
}
@media (min-width: 1300px) {
  .consent-inner {
    gap: 40px;
  }
}
.consent-inner .consent-content {
  gap: 5px;
  display: flex;
  font-size: 12px;
  line-height: 1.4;
  flex-direction: column;
}
.consent-inner .consent-content a {
  font-size: 12px;
}
.consent-inner .consent-text {
  width: 700px;
  max-width: 100%;
  margin: 0px 0px;
}
@media (min-width: 992px) {
  .consent-inner .consent-text {
    width: 850px;
  }
}
.consent-inner .consent-links a {
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  color: inherit;
}
.consent-inner .consent-buttons {
  gap: 10px;
  display: flex;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .consent-inner .consent-buttons {
    min-width: 200px;
    margin-top: 0px;
  }
}
.consent-inner .consent-button {
  display: flex;
  height: 35px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  position: relative;
  border-radius: 0px;
  cursor: pointer;
  font-size: 12px;
  align-items: center;
  text-decoration: none;
  padding: 12px 10px;
  min-width: 85px;
  text-align: center;
  transition: background-color 0.15s ease, transform 0.3s ease;
  text-transform: uppercase;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  justify-content: center;
}
.consent-inner .consent-button:hover {
  color: #FFFFFF;
  border-color: #000000;
  background-color: #000000;
}
@media (min-width: 992px) {
  .consent-inner .consent-button {
    display: inline-flex;
  }
}

@-webkit-keyframes svg-bounce {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes svg-bounce {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
.cookie-consent {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  bottom: 0;
  left: 0;
  position: fixed;
  padding: 20px 0;
  width: 100%;
  color: #000000;
  transform: translateY(100%);
  transition: 1s;
  z-index: 1000;
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-consent .cookie-consent-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-consent .cookie-consent-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0.8rem;
  }
}
.cookie-consent .cookies-text {
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-consent .cookies-text {
    text-align: left;
  }
}
.cookie-consent .cookies-text a {
  color: #000000;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-consent .cookies-buttons {
  display: flex;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .cookie-consent .cookies-buttons {
    margin-left: 2em;
    margin-top: 0;
  }
}
.cookie-consent .cookie-consent-button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #000000;
  outline-offset: -1px;
  width: 8em;
  height: 2.5em;
  cursor: pointer;
  padding-bottom: 0.06em;
  font-size: 0.9rem;
}
.cookie-consent .cookie-consent-button--agree {
  background-color: #000000;
  color: #FFFFFF;
}
.cookie-consent .cookie-consent-button--decline {
  margin-left: 10px;
}

.announcement-bar {
  background-color: #623337;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.announcement-bar .bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 85px;
  padding: 0 15px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .announcement-bar .bar-content {
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .announcement-bar .bar-content {
    padding: 0 50px;
  }
}
.announcement-bar .announcement-logo {
  position: relative;
  display: block;
  width: auto;
  height: 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .announcement-bar .announcement-logo {
    height: 20px;
  }
}
@media (min-width: 992px) {
  .announcement-bar .announcement-logo {
    height: 25px;
  }
}
.announcement-bar .annoucement-pattern {
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  height: 100%;
}
.announcement-bar .annoucement-pattern--left {
  right: calc(50% + 58px);
}
@media (min-width: 992px) {
  .announcement-bar .annoucement-pattern--left {
    right: calc(50% + 105px);
  }
}
@media (min-width: 1300px) {
  .announcement-bar .annoucement-pattern--left {
    right: calc(50% + 125px);
  }
}
.announcement-bar .annoucement-pattern--right {
  left: calc(50% + 58px);
}
@media (min-width: 992px) {
  .announcement-bar .annoucement-pattern--right {
    left: calc(50% + 105px);
  }
}
@media (min-width: 1300px) {
  .announcement-bar .annoucement-pattern--right {
    left: calc(50% + 125px);
  }
}
.announcement-bar .annoucement-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-size: 20px;
  transform: translate(-50%, -57%);
  z-index: 2;
}
@media (min-width: 992px) {
  .announcement-bar .annoucement-text {
    font-size: 40px;
  }
}
.announcement-bar .register {
  position: relative;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #FFFFFF;
  transition: 0.2s;
  padding: 5px 10px;
  text-align: center;
  line-height: 20px;
  z-index: 2;
}
@media (min-width: 768px) {
  .announcement-bar .register {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .announcement-bar .register {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .announcement-bar .register {
    font-size: 20px;
  }
}
.announcement-bar .register:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.announcement-bar .register span {
  display: block;
  transform: translateY(-5%);
}
.announcement-bar .header-logo {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding-top: 0.1em;
}
.announcement-bar .header-logo img {
  display: block;
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  .announcement-bar .header-logo img {
    height: 30px;
  }
}
@media (min-width: 992px) {
  .announcement-bar .header-logo img {
    height: 40px;
  }
}
@media (min-width: 1300px) {
  .announcement-bar .header-logo img {
    height: 50px;
  }
}

header {
  position: absolute;
  top: 85px;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header.header-black {
  color: #000000;
}
header.header-black .header-contact {
  background-color: #000000;
  color: #FFFFFF;
}
header.header-black .header-logo img {
  filter: invert(1);
}
header.header-black .header-nav-wrapper span {
  color: #000000;
}
header.header-black .header-nav-wrapper .nav-hamburger span {
  background-color: #000000;
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}
@media (min-width: 992px) {
  header .header-content {
    height: 110px;
  }
}
header .header-contact {
  background-color: #FFFFFF;
  color: #000000;
  width: 70px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 0.1em;
  transition: 0.2s;
}
@media (min-width: 768px) {
  header .header-contact {
    font-weight: 600;
    font-size: 14px;
    height: 30px;
    width: 80px;
  }
}
@media (min-width: 992px) {
  header .header-contact {
    font-size: 18px;
    width: 120px;
    height: 36px;
  }
}
@media (min-width: 1300px) {
  header .header-contact {
    font-size: 20px;
    width: 160px;
    height: 46px;
  }
}
header .header-contact:hover {
  background-color: #000000;
  color: #FFFFFF;
}
header .header-logo {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding-top: 0.1em;
}
header .header-logo img {
  display: block;
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  header .header-logo img {
    height: 30px;
  }
}
@media (min-width: 992px) {
  header .header-logo img {
    height: 40px;
  }
}
@media (min-width: 1300px) {
  header .header-logo img {
    height: 50px;
  }
}
header .header-nav-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .header-nav-wrapper .menu-text {
  font-family: acumin-pro-extra-condensed, sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  line-height: 1;
  display: none;
}
@media (min-width: 768px) {
  header .header-nav-wrapper .menu-text {
    font-size: 16px;
    display: block;
  }
}
@media (min-width: 992px) {
  header .header-nav-wrapper .menu-text {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  header .header-nav-wrapper .menu-text {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  header .header-nav-wrapper .menu-text {
    font-size: 22px;
  }
}
header .header-nav-wrapper .nav-hamburger {
  margin-left: 10px;
}
@media (min-width: 1300px) {
  header .header-nav-wrapper .nav-hamburger {
    margin-left: 14px;
  }
}
header .header-nav-wrapper .nav-hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: #FFFFFF;
}
header .header-nav-wrapper .nav-hamburger span:not(:first-of-type) {
  margin-top: 6px;
}

.header-mobile {
  position: fixed;
  z-index: -99;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-height: 100vh;
  width: 100%;
  background-color: #FFFFFF;
  overflow-y: auto;
  transition: 0.3s;
}
.header-mobile.open {
  z-index: 99;
  opacity: 1;
}
@media (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .container {
  min-height: 100%;
  height: 100%;
}
.header-mobile .header-mobile-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 40px 0;
}
.header-mobile .header-close {
  display: block;
  cursor: pointer;
}
.header-mobile .header-nav {
  width: 100%;
}
.header-mobile .header-nav ul li a {
  height: 70px;
  color: #000000;
  border-bottom: 1px solid #989898;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 40px;
  position: relative;
}
.header-mobile .header-nav ul li a::after {
  content: "";
  height: 100%;
  position: absolute;
  right: 10px;
  background-image: url("../../img/graphics/header-arrow-short.svg");
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-mobile .header-mobile-contact {
  width: 100%;
}
.header-mobile .header-mobile-contact h4 {
  color: #666666;
  margin-bottom: 4px;
}
.header-mobile .header-mobile-contact a {
  color: #000000;
}
.header-mobile .header-social {
  width: 100%;
}
.header-mobile .header-social h4 {
  color: #666666;
  margin-bottom: 4px;
}
.header-mobile .header-social a {
  display: inline-block;
  height: 28px;
}
.header-mobile .header-social a:not(:first-of-type) {
  margin-left: 20px;
}
.header-mobile .header-social a:nth-of-type(1) {
  height: 24px;
}
.header-mobile .header-social img {
  display: inline-block;
  height: 100%;
  width: auto;
}
.header-mobile .header-note {
  width: 100%;
  color: #666666;
}
.header-mobile .header-note a {
  color: #666666;
  font-size: 14px;
}
.header-mobile .header-copyright {
  margin-top: 10px;
  font-size: 11px;
}

.header-desktop {
  position: fixed;
  color: #000000;
  width: 100vw;
  min-height: 100vh;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: right;
  transform: translateX(100%);
  transition: transform 1s 0s;
}
.header-desktop .header-desktop-container {
  padding: 60px;
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .header-desktop .header-desktop-container {
    padding: 80px;
  }
}
@media (min-width: 1300px) {
  .header-desktop .header-desktop-container {
    padding: 100px;
  }
}
@media (min-width: 1600px) {
  .header-desktop .header-desktop-container {
    padding: 120px;
  }
}
.header-desktop.open {
  transform: translateX(0);
}
.header-desktop .header-nav {
  width: 65%;
  height: 100%;
}
@media (min-width: 1600px) {
  .header-desktop .header-nav {
    width: 60%;
  }
}
.header-desktop .header-nav ul {
  height: 100%;
}
.header-desktop .header-nav ul li {
  height: 20%;
}
.header-desktop .header-nav ul li a {
  height: 100%;
  color: #000000;
  border-bottom: 1px solid #989898;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 40px;
  position: relative;
}
.header-desktop .header-nav ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  background-image: url("../../img/graphics/header-arrow-short.svg");
  width: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}
@media (min-width: 1600px) {
  .header-desktop .header-nav ul li a::after {
    width: 30px;
  }
}
.header-desktop .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
}
.header-desktop .header-cross {
  width: 20px;
  height: auto;
  display: block;
  align-self: flex-end;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .header-desktop .header-cross {
    width: 30px;
  }
}
.header-desktop .header-close {
  align-self: flex-end;
  cursor: pointer;
}
.header-desktop .header-close:hover .close-arrow--down {
  transform: translateY(-4px) scaleX(1.1) rotate(45deg);
}
.header-desktop .header-close:hover .close-arrow--up {
  transform: translateY(4px) scaleX(1.1) rotate(45deg);
  top: 7px;
}
.header-desktop .header-close .close-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #000000;
  position: relative;
  transition: 0.2s;
}
.header-desktop .header-close .close-arrow--down {
  border-width: 0px 1px 1px 0px;
  transform: scaleX(1.1) rotate(45deg);
}
.header-desktop .header-close .close-arrow--up {
  border-width: 1px 0px 0px 1px;
  transform: scaleX(1.1) rotate(45deg);
  top: 7px;
}
.header-desktop .header-desktop-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-desktop .header-mobile-contact {
  font-size: 18px;
}
@media (min-width: 1300px) {
  .header-desktop .header-mobile-contact {
    font-size: 20px;
  }
}
.header-desktop .header-mobile-contact h4 {
  color: #666666;
}
.header-desktop .header-mobile-contact a {
  display: inline-block;
  color: #000000;
  margin-top: 4px;
}
.header-desktop .header-social {
  font-size: 18px;
  margin-top: 5em;
}
@media (min-width: 1300px) {
  .header-desktop .header-social {
    font-size: 20px;
  }
}
.header-desktop .header-social h4 {
  color: #666666;
  margin-bottom: 8px;
}
.header-desktop .header-social a {
  height: 22px;
  width: auto;
}
.header-desktop .header-social a:not(:first-of-type) {
  margin-left: 10px;
}
.header-desktop .header-social a:hover img {
  transform: scale(1.1);
}
.header-desktop .header-social a img {
  display: inline-block;
  height: 100%;
  transition: 0.1s;
}
.header-desktop .header-note {
  margin-top: 1em;
  color: #666666;
}
.header-desktop .header-note a {
  color: #666666;
  transition: 0.2s;
}
.header-desktop .header-note a:hover {
  filter: brightness(140%);
}

.header-nav ul li.current-menu-item a {
  background-color: #000000;
  color: #FFFFFF;
  border: 0;
}
.header-nav ul li.current-menu-item a::before {
  background-color: #FFFFFF;
  color: #000000;
  border: 0;
}
.header-nav ul li.current-menu-item a::after {
  filter: invert(1);
}
.header-nav ul li:hover a {
  background-color: #000000;
  color: #FFFFFF;
  border: 0;
}
.header-nav ul li:hover a::before {
  background-color: #FFFFFF;
  color: #000000;
  border: 0;
}
.header-nav ul li:hover a::after {
  filter: invert(1);
  -webkit-animation: arrowBounce 1s infinite;
          animation: arrowBounce 1s infinite;
}
.header-nav ul li a {
  margin-left: 30px;
}
.header-nav ul li a::before {
  content: "";
  left: -50px;
  position: relative;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  width: 10px;
  font-size: 18px;
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-style: normal;
}
@media (min-width: 1300px) {
  .header-nav ul li a::before {
    width: 0.3em;
  }
}
@media (min-width: 1600px) {
  .header-nav ul li a {
    margin-left: 50px;
  }
}
.header-nav ul li:nth-of-type(1) a {
  font-family: acumin-pro, sans-serif;
  font-weight: 200;
  font-size: 34px;
}
@media (min-width: 1300px) {
  .header-nav ul li:nth-of-type(1) a {
    font-size: 80px;
  }
}
.header-nav ul li:nth-of-type(1) a::before {
  content: "01";
}
.header-nav ul li:nth-of-type(2) a {
  font-family: acumin-pro, sans-serif;
  font-weight: 600;
  font-size: 22px;
}
@media (min-width: 992px) {
  .header-nav ul li:nth-of-type(2) a {
    font-size: 28px;
  }
}
@media (min-width: 1300px) {
  .header-nav ul li:nth-of-type(2) a {
    font-size: 46px;
  }
}
@media (min-width: 1600px) {
  .header-nav ul li:nth-of-type(2) a {
    font-size: 56px;
  }
}
.header-nav ul li:nth-of-type(2) a::before {
  content: "02";
}
.header-nav ul li:nth-of-type(3) a {
  font-style: italic;
  font-weight: 300;
  font-size: 45px;
  padding-bottom: 0.15em;
}
@media (min-width: 1300px) {
  .header-nav ul li:nth-of-type(3) a {
    font-size: 105px;
  }
}
.header-nav ul li:nth-of-type(3) a::after {
  margin-top: 0.15em;
}
.header-nav ul li:nth-of-type(3) a::before {
  content: "03";
}
.header-nav ul li:nth-of-type(4) a {
  font-size: 34px;
  padding-bottom: 0.1em;
  font-family: acumin-pro-semi-condensed, sans-serif;
  font-style: normal;
}
@media (min-width: 1300px) {
  .header-nav ul li:nth-of-type(4) a {
    font-size: 85px;
  }
}
.header-nav ul li:nth-of-type(4) a::after {
  margin-top: 0.1em;
}
.header-nav ul li:nth-of-type(4) a::before {
  content: "04";
}
.header-nav ul li:nth-of-type(5) a {
  font-weight: 700;
  font-size: 45px;
  padding-bottom: 0.15em;
}
@media (min-width: 1300px) {
  .header-nav ul li:nth-of-type(5) a {
    font-size: 105px;
  }
}
.header-nav ul li:nth-of-type(5) a::after {
  margin-top: 0.15em;
}
.header-nav ul li:nth-of-type(5) a::before {
  content: "05";
}

.scroll-down header {
  position: fixed;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.5));
  background-color: #000000;
  z-index: 9999;
  top: 0;
}
.scroll-down header.header-black {
  background-color: #FFFFFF;
  filter: drop-shadow(0 1px 10px rgba(170, 170, 170, 0.3));
}
.scroll-down header .header-contact {
  box-shadow: 0 0 0 1px #FFFFFF inset;
}

@-webkit-keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
footer {
  padding-top: 0px;
  padding-top: 70px;
  padding-bottom: 50px;
  background-color: #000000;
  flex-grow: 1;
}
@media (min-width: 992px) {
  footer {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1600px) {
  footer {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
footer .footer-content .footer-nav {
  width: 100%;
}
@media (min-width: 768px) {
  footer .footer-content nav ul {
    display: flex;
    justify-content: space-between;
  }
}
footer .footer-content nav ul li:not(:first-of-type) {
  margin-top: 1em;
}
@media (min-width: 768px) {
  footer .footer-content nav ul li:not(:first-of-type) {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  footer .footer-content nav ul li:not(:first-of-type) {
    margin-left: 2.5em;
  }
}
footer .footer-content nav ul li a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 22px;
  transition: 0.2s;
  position: relative;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
footer .footer-content nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
footer .footer-content nav ul li a::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
@media (min-width: 1300px) {
  footer .footer-content nav ul li a {
    font-size: 26px;
  }
}
footer .footer-content .footer-info {
  color: #FFFFFF;
  margin-top: 40px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  footer .footer-content .footer-info {
    margin-top: 0;
    order: 0;
  }
}
@media (min-width: 992px) {
  footer .footer-content .footer-info {
    display: flex;
    flex: 1;
  }
}
footer .footer-content .footer-info h3,
footer .footer-content .footer-info address,
footer .footer-content .footer-info a {
  font-size: 16px;
}
@media (min-width: 992px) {
  footer .footer-content .footer-info h3,
footer .footer-content .footer-info address,
footer .footer-content .footer-info a {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  footer .footer-content .footer-info h3,
footer .footer-content .footer-info address,
footer .footer-content .footer-info a {
    font-size: 20px;
  }
}
footer .footer-content .footer-info h3 {
  color: #989898;
  margin-bottom: 10px;
}
footer .footer-content .footer-info a {
  color: #FFFFFF;
  display: inline-block;
  position: relative;
}
footer .footer-content .footer-info a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
footer .footer-content .footer-info a::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
footer .footer-content .footer-info .footer-contact {
  margin-top: 30px;
}
@media (min-width: 1300px) {
  footer .footer-content--mobile {
    display: none;
  }
}
footer .footer-content--desktop {
  display: none;
}
@media (min-width: 1300px) {
  footer .footer-content--desktop {
    display: block;
  }
}
footer .footer-content--desktop .footer-top {
  display: flex;
  justify-content: space-between;
}
footer .footer-content--desktop .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 0;
}
footer hr {
  height: 1px;
  background-color: #989898;
  border: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
footer .footer-bottom {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
@media (min-width: 768px) {
  footer .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
  }
}
footer .footer-social {
  display: flex;
  justify-content: flex-start;
  order: -1;
}
@media (min-width: 768px) {
  footer .footer-social {
    margin-top: 0;
    order: -1;
  }
}
@media (min-width: 1300px) {
  footer .footer-social {
    margin-top: 0;
    order: unset;
  }
}
footer .footer-social a {
  display: block;
  transition: 0.2s;
}
footer .footer-social a img {
  filter: invert(1);
}
footer .footer-social a:not(:first-of-type) {
  margin-left: 26px;
}
@media (min-width: 1300px) {
  footer .footer-social a:not(:first-of-type) {
    margin-left: 32px;
  }
}
footer .footer-social a:hover img {
  filter: invert(63%) sepia(16%) saturate(5%) hue-rotate(321deg) brightness(94%) contrast(88%);
}
footer .footer-social :nth-child(1) img {
  height: 24px;
  width: auto;
}
@media (min-width: 1300px) {
  footer .footer-social :nth-child(1) img {
    height: 25px;
  }
}
@media (min-width: 768px) {
  footer .footer-social :nth-child(2) {
    width: auto;
  }
}
footer .footer-social :nth-child(2) img {
  width: 13px;
  height: auto;
}
@media (min-width: 1300px) {
  footer .footer-social :nth-child(2) img {
    width: 14px;
  }
}
@media (min-width: 768px) {
  footer .footer-social :nth-child(3) {
    width: auto;
  }
}
footer .footer-social :nth-child(3) img {
  width: 24px;
  height: auto;
}
@media (min-width: 1300px) {
  footer .footer-social :nth-child(3) img {
    width: 25px;
  }
}
@media (min-width: 768px) {
  footer .footer-social :nth-child(4) {
    width: auto;
  }
}
@media (min-width: 992px) {
  footer .footer-social :nth-child(4) {
    margin: 0;
  }
}
footer .footer-social :nth-child(4) img {
  width: 26px;
  height: auto;
}
@media (min-width: 1300px) {
  footer .footer-social :nth-child(4) img {
    width: 27px;
  }
}
footer .footer-note {
  font-size: 12px;
  color: #989898;
  text-align: left;
  margin-top: 24px;
}
@media (min-width: 1300px) {
  footer .footer-note {
    margin-top: 0;
    font-size: 14px;
  }
}
footer .footer-links {
  font-size: 12px;
  text-align: left;
  margin-top: 24px;
  color: #989898;
}
@media (min-width: 1300px) {
  footer .footer-links {
    margin-top: 0;
    font-size: 14px;
  }
}
footer .footer-links a {
  color: #989898;
  transition: 0.2s;
}
footer .footer-links a:hover {
  color: #FFFFFF;
}
footer .footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
@media (min-width: 768px) {
  footer .footer-logos {
    justify-content: flex-start;
    margin-top: 0;
  }
}
footer .footer-logos a {
  display: block;
}
footer .footer-logos .logo-ecoworld {
  margin-right: 24px;
}
@media (min-width: 1300px) {
  footer .footer-logos .logo-ecoworld {
    margin-right: 40px;
  }
}
footer .footer-logos .logo-ecoworld img {
  width: 130px;
  height: auto;
  filter: invert(1);
}
footer .footer-logos .logo-poplar img {
  width: 120px;
  height: auto;
}
footer .footer-logos .logo-beliving img {
  width: 120px;
  height: auto;
}

.banner-section {
  position: relative;
  background-color: #000000;
}
.banner-section--no-bg .banner-text-text span {
  background-color: transparent !important;
}
.banner-section .banner {
  max-height: 100vh;
}
.banner-section .banner-outer {
  height: 100vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banner-section .banner-outer {
    padding-top: 56.25%;
    height: 0;
  }
}
.banner-section--image .banner-inner {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-section--video .banner-inner {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100%;
}
.banner-section--video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-section--video video.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-section--video video.desktop {
    display: block;
  }
}
.banner-section--video video.mobile {
  display: block;
}
@media (min-width: 768px) {
  .banner-section--video video.mobile {
    display: none;
  }
}
.banner-section--video .banner-fallback {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-section--video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
  .banner-section--video iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) and (max-width: 768px) {
  .banner-section--video iframe {
    width: 177.78vh;
  }
}
@media (min-width: 768px) {
  .banner-section--video iframe.mobile {
    display: none;
  }
}
.banner-section--video iframe.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-section--video iframe.desktop {
    display: block;
  }
}
.banner-section .banner-tint {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.banner-section .banner-content {
  width: 100%;
  position: absolute;
  height: 100%;
}
.banner-section .banner-content .container {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section .banner-content--center {
  left: 0;
  top: 0;
}
.banner-section .banner-content--bottom {
  display: none;
  left: 0;
  bottom: 0;
}
.banner-section .banner-content--bottom .container {
  align-items: flex-end;
}
.banner-section .banner-content--bottom .banner-text {
  transform: translateY(66%);
}
.banner-section .banner-text {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.banner-section .heading-img {
  position: relative;
  max-width: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .banner-section .heading-img {
    max-width: none;
  }
}
.banner-section .banner-heading {
  max-width: 100%;
  height: auto;
}
.banner-section .banner-heading--mobile {
  display: block;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .banner-section .banner-heading--mobile {
    display: none;
  }
}
.banner-section .banner-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-section .banner-heading--desktop {
    display: block;
    width: 100%;
  }
}
.banner-section .banner-text-text {
  margin-top: max(24px, 4%);
  color: #FFFFFF;
  max-width: 370px;
  text-align: center;
}
@media (min-width: 768px) {
  .banner-section .banner-text-text {
    max-width: 16.6666666667rem;
  }
}
@media (min-width: 1300px) {
  .banner-section .banner-text-text {
    max-width: 600px;
  }
}
.banner-section #scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: block;
  width: max(24px, 2%);
}
.banner-section #scroll-arrow path {
  stroke: #FFFFFF;
  -webkit-animation: arrow 1.6s infinite;
          animation: arrow 1.6s infinite;
}
.banner-section #scroll-arrow path.arrow-1 {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.banner-section #scroll-arrow path.arrow-2 {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.banner-section #scroll-arrow path.arrow-3 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@-webkit-keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.banner-section .banner-community-chevron {
  position: absolute;
  width: 24%;
  display: block;
  height: auto;
  right: 6%;
  top: 7%;
  transform: translateX(50vw);
  transition: 1.2s 0.2s;
}
@media (min-width: 768px) {
  .banner-section .banner-community-chevron {
    width: 30%;
    right: -4%;
    top: 0;
    transition: 1.5s 0.7s;
  }
}
.banner-section .banner-apartments-chevron {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-40%);
  width: 20%;
  max-width: 400px;
  opacity: 0;
  transition: 1s;
}
@media (min-width: 768px) {
  .banner-section .banner-apartments-chevron {
    display: block;
  }
}
.banner-section .banner-apartments-chevron--left {
  left: -2%;
}
.banner-section .banner-apartments-chevron--right {
  right: 0;
}
.banner-section .banner-community-graphic-1 {
  position: absolute;
  display: block;
  width: 18%;
  height: auto;
  left: -10%;
  bottom: 7%;
  transform: translateX(-50vw);
  transition: 1.2s 0.2s;
}
@media (min-width: 768px) {
  .banner-section .banner-community-graphic-1 {
    width: 36%;
    left: -42%;
    top: unset;
    bottom: 0;
    transition: 1.5s 0.7s;
  }
}
.banner-section .banner-community-graphic-2 {
  display: none;
}
@media (min-width: 768px) {
  .banner-section .banner-community-graphic-2 {
    position: absolute;
    display: block;
    width: 26%;
    height: auto;
    right: -36%;
    bottom: 0%;
    transform: translateY(-70vh);
    transition: 1.5s 0s;
  }
  .banner-section .banner-community-graphic-2 img {
    width: 100%;
  }
}
.banner-section.in-view .banner-community-chevron,
.banner-section.in-view .banner-community-graphic-2 {
  transform: translateX(0) !important;
}
.banner-section.in-view .banner-community-graphic-1 {
  transform: translateX(0) !important;
}
.banner-section.in-view .banner-apartments-chevron {
  transform: translateX(0) translateY(-50%) !important;
  opacity: 1;
}

.intro-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 40px 0;
}
@media (min-width: 992px) {
  .intro-section {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .intro-section {
    padding: 80px 0;
  }
}
.intro-section .intro-content {
  width: 100%;
}
@media (min-width: 768px) {
  .intro-section .intro-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
.intro-section .intro-content img {
  display: none;
}
@media (min-width: 768px) {
  .intro-section .intro-content img {
    display: block;
    width: 20%;
    height: auto;
    max-height: 80px;
    transform: translateX(-300%);
    transition: 2s 0s;
  }
}
@media (min-width: 1300px) {
  .intro-section .intro-content img {
    width: 27%;
  }
}
.intro-section .intro-content .intro-text {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0.5s;
}
@media (min-width: 768px) {
  .intro-section .intro-content .intro-text {
    text-align: left;
    width: 60%;
    margin-left: 7%;
  }
}
@media (min-width: 1300px) {
  .intro-section .intro-content .intro-text {
    font-size: 18px;
    width: 52%;
  }
}
.intro-section--home {
  padding-top: 60px;
  padding-bottom: 90px;
}
@media (min-width: 768px) {
  .intro-section--home {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .intro-section--home {
    padding-top: 100px;
  }
}
@media (min-width: 1300px) {
  .intro-section--home {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.intro-section--home .heading-img img {
  width: 100%;
  max-width: 300px;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0s;
}
@media (min-width: 768px) {
  .intro-section--home .heading-img img {
    width: 65%;
    max-width: none;
  }
}
.intro-section--home .intro-content {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .intro-section--home .intro-content {
    margin-top: 60px;
  }
}
.intro-section--home .intro-content img {
  max-height: none;
  transform: translateX(-300%);
  transition: 1.4s 0.5s;
}
.intro-section--home .intro-text {
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0.5s;
}
@media (min-width: 768px) {
  .intro-section--home .intro-text {
    transition: 1s 1s;
  }
}
.intro-section--home.in-view .heading-img img {
  opacity: 1;
  transform: translateY(0);
}
.intro-section--home.in-view .intro-content img {
  transform: translateX(0);
}
.intro-section--home.in-view .intro-text {
  opacity: 1;
  transform: translateY(0);
}
.intro-section.in-view .heading-img img {
  opacity: 1;
  transform: translateY(0);
}
.intro-section.in-view .intro-content img {
  transform: translateX(0);
}
.intro-section.in-view .intro-text {
  opacity: 1;
  transform: translateY(0);
}

body.page-id-107 .intro-section .intro-content {
  text-align: center;
}
body.page-id-107 .intro-section .intro-content img,
body.page-id-107 .intro-section .intro-content svg {
  display: none;
}
body.page-id-107 .intro-section .intro-content .intro-text {
  margin-left: 0px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-id-107 .intro-section .intro-content .intro-text {
    width: 65%;
  }
}

.carousel-wrapper .swiper-carousel-wrapper {
  position: relative;
}
.carousel-wrapper .swiper-carousel {
  overflow-x: hidden;
}
.carousel-wrapper .swiper-buttons {
  position: absolute;
  display: flex;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 2;
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-buttons {
    position: initial;
    transform: none;
    align-self: flex-start;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-buttons--mobile {
    display: none;
  }
}
.carousel-wrapper .swiper-buttons--desktop {
  display: none;
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-buttons--desktop {
    display: flex;
  }
}
.carousel-wrapper .swiper-button {
  position: relative;
  width: 40px;
  height: 40px;
  background-image: url("../../img/graphics/carousel-arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
}
@media (min-width: 1300px) {
  .carousel-wrapper .swiper-button {
    width: 50px;
    height: 50px;
  }
}
.carousel-wrapper .swiper-button::after {
  content: "";
}
.carousel-wrapper .swiper-button-next {
  transform: scaleX(-1);
  margin-left: 10px;
}
.carousel-wrapper .slide-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 240px;
}
@media (min-width: 768px) {
  .carousel-wrapper .slide-img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .carousel-wrapper .slide-img {
    height: 500px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper .slide-img {
    height: 640px;
  }
}
@media (min-width: 1600px) {
  .carousel-wrapper .slide-img {
    height: 700px;
  }
}
.carousel-wrapper .slide-landscape {
  display: none;
}
.carousel-wrapper .swiper-carousel-content-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-carousel-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper .swiper-carousel-content-wrapper {
    margin-top: 40px;
  }
}
.carousel-wrapper .swiper-carousel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-carousel-content {
    align-items: flex-start;
    text-align: left;
    width: 40%;
  }
}
@media (min-width: 992px) {
  .carousel-wrapper .swiper-carousel-content {
    width: 36%;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper .swiper-carousel-content {
    width: 32%;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper .swiper-carousel-content {
    width: 26%;
  }
}
.carousel-wrapper .swiper-carousel-content .carousel-heading {
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
}
@media (min-width: 992px) {
  .carousel-wrapper .swiper-carousel-content .carousel-heading {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper .swiper-carousel-content .carousel-heading {
    font-size: 22px;
  }
}
.carousel-wrapper .swiper-carousel-content .carousel-text {
  max-width: 240px;
}
@media (min-width: 768px) {
  .carousel-wrapper .swiper-carousel-content .carousel-text {
    max-width: none;
    line-height: 1.5;
  }
}
.carousel-wrapper .swiper-carousel-details-landscape {
  display: none;
}
.carousel-wrapper--black {
  color: #000000;
}
.carousel-wrapper--white {
  color: #FFFFFF;
}
.carousel-wrapper--white .swiper-button {
  background-image: url("../../img/graphics/carousel-arrow-left-white.svg");
}
.carousel-wrapper--places .slide-img {
  background-color: #000000;
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .swiper-carousel, .carousel-wrapper--explore .swiper-carousel {
    overflow-x: visible;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .slide-img, .carousel-wrapper--explore .slide-img {
    display: none;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content-wrapper, .carousel-wrapper--explore .swiper-carousel-content-wrapper {
    display: none;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .slide-landscape, .carousel-wrapper--explore .slide-landscape {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.carousel-wrapper--captions-landscape .slide-landscape-img, .carousel-wrapper--explore .slide-landscape-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .slide-landscape-img, .carousel-wrapper--explore .slide-landscape-img {
    height: 240px;
    width: 45%;
  }
}
@media (min-width: 992px) {
  .carousel-wrapper--captions-landscape .slide-landscape-img, .carousel-wrapper--explore .slide-landscape-img {
    height: 280px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--captions-landscape .slide-landscape-img, .carousel-wrapper--explore .slide-landscape-img {
    height: 360px;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content, .carousel-wrapper--explore .swiper-carousel-content {
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content, .carousel-wrapper--explore .swiper-carousel-content {
    width: 42%;
  }
}
.carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-heading, .carousel-wrapper--explore .swiper-carousel-content .carousel-heading {
  font-size: 36px;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  line-height: 1;
}
@media (min-width: 992px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-heading, .carousel-wrapper--explore .swiper-carousel-content .carousel-heading {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-heading, .carousel-wrapper--explore .swiper-carousel-content .carousel-heading {
    font-size: 48px;
  }
}
.carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-heading-thin, .carousel-wrapper--explore .swiper-carousel-content .carousel-heading-thin {
  font-weight: 300;
}
.carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-heading-bold, .carousel-wrapper--explore .swiper-carousel-content .carousel-heading-bold {
  font-weight: 700;
}
.carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-text, .carousel-wrapper--explore .swiper-carousel-content .carousel-text {
  margin-top: 20px;
  max-width: 400px;
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-text, .carousel-wrapper--explore .swiper-carousel-content .carousel-text {
    max-width: none;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-content .carousel-text, .carousel-wrapper--explore .swiper-carousel-content .carousel-text {
    max-width: 380px;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-details-landscape, .carousel-wrapper--explore .swiper-carousel-details-landscape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--captions-landscape .swiper-carousel-details-landscape, .carousel-wrapper--explore .swiper-carousel-details-landscape {
    margin-top: 90px;
    margin-bottom: 24px;
  }
}
.carousel-wrapper--captions-landscape .swiper-pagination .current-slide-index, .carousel-wrapper--explore .swiper-pagination .current-slide-index {
  font-weight: 700;
}
@media (min-width: 768px) {
  .carousel-wrapper--no-captions .swiper-buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--no-captions .swiper-button-prev {
    transform: translateX(-50%);
  }
  .carousel-wrapper--no-captions .swiper-button-next {
    transform: translateX(50%) scaleX(-1);
  }
}
.carousel-wrapper--no-captions .swiper-slide {
  height: 0;
  overflow: hidden;
  padding-top: 53.125%;
  background: white;
  position: relative;
}
.carousel-wrapper--no-captions .slide-img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.carousel-wrapper--places {
  position: relative;
}
.carousel-wrapper--places .swiper-wrapper {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carousel-wrapper--places .swiper-carousel {
  position: relative;
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-carousel {
    padding-top: 60px;
    overflow-x: visible;
    scrollbar-width: none !important;
  }
  .carousel-wrapper--places .swiper-carousel::-webkit-scrollbar {
    width: 0 !important;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--places .swiper-carousel {
    padding-top: 70px;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-slide.raised {
    top: -60px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .carousel-wrapper--places .swiper-slide.raised {
    top: -70px;
  }
}
.carousel-wrapper--places .swiper-slide.attention .slide-img {
  transform-origin: bottom;
  -webkit-animation: PlaceAttention 2s;
          animation: PlaceAttention 2s;
}
.carousel-wrapper--places .swiper-slide--hidden {
  display: none;
}
.carousel-wrapper--places .slide-img {
  position: relative;
  height: 360px;
}
@media (min-width: 768px) {
  .carousel-wrapper--places .slide-img {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .carousel-wrapper--places .slide-img {
    height: 340px;
  }
}
@media (min-width: 1300px) {
  .carousel-wrapper--places .slide-img {
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .carousel-wrapper--places .slide-img {
    height: 450px;
  }
}
.carousel-wrapper--places .slide-img--contain {
  background-size: 75% 75%;
}
.carousel-wrapper--places .slide-content {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .carousel-wrapper--places .slide-content {
    text-align: left;
    margin-top: 20px;
  }
}
.carousel-wrapper--places .slide-content .slide-heading {
  font-weight: 700;
  margin-bottom: 2px;
}
.carousel-wrapper--places .slide-ig {
  display: inline-block;
  color: #000000;
  margin-top: 10px;
  font-weight: 700;
}
.carousel-wrapper--places .swiper-buttons--mobile {
  top: 360px;
  bottom: auto;
  transform: translateX(-50%) translateY(-50%);
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-buttons--mobile {
    display: none;
  }
}
.carousel-wrapper--places .swiper-button--desktop {
  display: none;
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-button--desktop {
    display: block;
    top: 200px;
    bottom: auto;
    left: auto;
    right: auto;
    position: absolute;
    z-index: 3;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .carousel-wrapper--places .swiper-button--desktop {
    top: 230px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .carousel-wrapper--places .swiper-button--desktop {
    top: 260px;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-button--desktop.swiper-button-prev {
    left: 0;
  }
}
@media (min-width: 768px) {
  .carousel-wrapper--places .swiper-button--desktop.swiper-button-next {
    right: 0;
  }
}
.carousel-wrapper--zone-travel .swiper-buttons {
  transform: translateX(-50%) translateY(100%);
}
.carousel-wrapper--zone-travel .swiper-slide--hidden {
  display: none !important;
}

@-webkit-keyframes PlaceAttention {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes PlaceAttention {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.discover {
  margin-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(to top, #EDEDED 0 300px, #FFFFFF 300px 100%);
}
@media (min-width: 768px) {
  .discover {
    margin-top: 60px;
    padding-bottom: 100px;
    background: linear-gradient(to top, #EDEDED 190px, #FFFFFF 190px 100%);
  }
}
@media (min-width: 992px) {
  .discover {
    padding-bottom: 120px;
    background: linear-gradient(to top, #EDEDED 240px, #FFFFFF 240px 100%);
  }
}
@media (min-width: 1300px) {
  .discover {
    margin-top: 80px;
    padding-bottom: 150px;
    background: linear-gradient(to top, #EDEDED 300px, #FFFFFF 300px 100%);
  }
}
@media (min-width: 1600px) {
  .discover {
    margin-top: 90px;
    padding-bottom: 170px;
    background: linear-gradient(to top, #EDEDED 350px, #FFFFFF 350px 100%);
  }
}
.discover hr {
  height: 1px;
  background-color: #989898;
  border: none;
  padding: 0;
  margin: 0;
}
.discover .discover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 1300px) {
  .discover .discover-content {
    margin-top: 60px;
  }
}
.discover .discover-content h2 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
}
@media (min-width: 1300px) {
  .discover .discover-content h2 {
    font-size: 44px;
  }
}
.discover .discover-links {
  margin-top: 50px;
  width: 100%;
}
@media (min-width: 768px) {
  .discover .discover-links {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .discover .discover-links {
    margin-top: 60px;
  }
}
@media (min-width: 1600px) {
  .discover .discover-links {
    margin-top: 70px;
  }
}
.discover .discover-links .discover-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  position: relative;
  padding: 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .discover .discover-links .discover-link {
    width: 48%;
    height: 180px;
  }
}
@media (min-width: 992px) {
  .discover .discover-links .discover-link {
    height: 240px;
    padding: 0 30px;
  }
}
@media (min-width: 1300px) {
  .discover .discover-links .discover-link {
    height: 300px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .discover .discover-links .discover-link {
    height: 360px;
  }
}
.discover .discover-links .discover-link:not(:first-of-type) {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .discover .discover-links .discover-link:not(:first-of-type) {
    margin-top: 0;
  }
}
.discover .discover-links .discover-link:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.discover .discover-links .discover-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}
.discover .discover-links .discover-link .discover-link-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: acumin-pro, sans-serif;
  font-size: 30px;
  text-align: center;
}
.discover .discover-links .discover-link--apartments .discover-link-content {
  font-weight: 200;
  font-size: 34px;
}
@media (min-width: 992px) {
  .discover .discover-links .discover-link--apartments .discover-link-content {
    font-size: 44px;
  }
}
@media (min-width: 1300px) {
  .discover .discover-links .discover-link--apartments .discover-link-content {
    font-size: 61px;
  }
}
.discover .discover-links .discover-link--life .discover-link-content {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .discover .discover-links .discover-link--life .discover-link-content {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .discover .discover-links .discover-link--life .discover-link-content {
    font-size: 44px;
  }
}
.discover .discover-links .discover-link--vision .discover-link-content {
  font-weight: 400;
  font-size: 50px;
  font-style: italic;
  font-family: acumin-pro-extra-condensed, sans-serif;
}
@media (min-width: 992px) {
  .discover .discover-links .discover-link--vision .discover-link-content {
    font-size: 70px;
  }
}
@media (min-width: 1300px) {
  .discover .discover-links .discover-link--vision .discover-link-content {
    font-size: 105px;
  }
}
.discover--no-divider hr {
  display: none;
}

.page-template-page-our-vision .discover hr,
.page-template-page-life .discover hr {
  display: none;
}

.page-template-page-our-vision .discover-content {
  margin-top: 0px;
}

.page-template-page-community .discover {
  margin-top: 0;
}

.generic {
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .generic {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1300px) {
  .generic {
    margin-top: 110px;
    padding-bottom: 80px;
  }
}
.generic h1 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 2.4em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1em;
  font-weight: 700;
}
.generic h2 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 1.6em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1.7em;
  margin-bottom: 0.7em;
  font-weight: 700;
}
.generic h3 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 1.3em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1.5em;
  margin-bottom: 0.7em;
  font-weight: 700;
}
.generic p {
  margin-top: 0.8em;
}
.generic a {
  color: #000000;
  text-decoration: underline;
}
.generic ul {
  list-style: disc;
  margin-top: 1em;
  margin-left: 1em;
}
.generic ul li {
  display: table-row;
}
.generic ul li::before {
  content: "•";
  font-size: 0.8em;
  display: table-cell;
  padding-right: 1em;
}

.home-grid {
  position: relative;
  padding-bottom: 30px;
  background: linear-gradient(to bottom, #000000 0 100px, #FFFFFF 100px 100%);
}
@media (min-width: 768px) {
  .home-grid {
    padding-bottom: 50px;
    background: linear-gradient(to bottom, #000000 0 200px, #FFFFFF 200px 100%);
  }
}
@media (min-width: 1300px) {
  .home-grid {
    padding-bottom: 70px;
    background: linear-gradient(to bottom, #000000 0 250px, #FFFFFF 250px 100%);
  }
}
@media (min-width: 1600px) {
  .home-grid {
    background: linear-gradient(to bottom, #000000 0 290px, #FFFFFF 290px 100%);
  }
}
.home-grid .home-grid-chevron {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  display: block;
  height: auto;
  transform: translate(-50%, -70%);
}
@media (min-width: 768px) {
  .home-grid .home-grid-chevron {
    display: none;
  }
}
.home-grid .home-grid-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  grid-auto-rows: 440px;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
  }
}
@media (min-width: 1300px) {
  .home-grid .home-grid-wrapper {
    grid-auto-rows: 500px;
  }
}
@media (min-width: 1600px) {
  .home-grid .home-grid-wrapper {
    grid-auto-rows: 580px;
  }
}
.home-grid .home-grid-wrapper .grid-item {
  grid-column: auto/span 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 1.2s;
}
.home-grid .home-grid-wrapper .grid-item .grid-item-tint {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
  transition: 0.2s;
}
.home-grid .home-grid-wrapper .grid-item:hover .grid-item-tint {
  opacity: 1;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--col-1 {
    grid-column: auto/span 1;
  }
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--col-2 {
    grid-column: auto/span 2;
  }
}
.home-grid .home-grid-wrapper .grid-item--our-vision .grid-item-heading {
  width: 144px;
  height: auto;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--our-vision .grid-item-heading {
    width: 28%;
  }
}
.home-grid .home-grid-wrapper .grid-item--apartments .grid-item-heading {
  width: 222px;
  height: auto;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--apartments .grid-item-heading {
    width: 40%;
  }
}
.home-grid .home-grid-wrapper .grid-item--life .grid-item-heading {
  width: 85%;
  max-width: 300px;
  height: auto;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--life .grid-item-heading {
    width: 80%;
    max-width: none;
  }
}
.home-grid .home-grid-wrapper .grid-item--community .grid-item-heading {
  width: 60%;
  max-width: 300px;
  height: auto;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item--community .grid-item-heading {
    width: 40%;
    max-width: none;
  }
}
.home-grid .home-grid-wrapper .grid-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.home-grid .home-grid-wrapper .grid-item-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.home-grid .home-grid-wrapper .grid-item-heading {
  max-width: 100%;
  height: auto;
}
.home-grid .home-grid-wrapper .grid-item-heading--mobile {
  display: block;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item-heading--mobile {
    display: none;
  }
}
.home-grid .home-grid-wrapper .grid-item-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item-heading--desktop {
    display: block;
  }
}
.home-grid .home-grid-wrapper .grid-item-desc {
  color: #FFFFFF;
  display: inline-block;
  max-width: 252px;
  margin-top: 20px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .home-grid .home-grid-wrapper .grid-item-desc {
    max-width: 90%;
  }
}
.home-grid .home-grid-wrapper .grid-item-desc span {
  background-color: #000000;
  box-shadow: 10px 0 0 3px #000000, -10px 0 0 3px #000000;
  padding-bottom: 0.08em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.home-grid .home-grid-wrapper .grid-item-desc span b {
  font-weight: 700;
  font-style: italic;
}

.braithwaite-flash {
  display: grid;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  /* Hide */
  opacity: 0;
  transition: opacity 1s;
  z-index: -10;
}
.braithwaite-flash.active {
  z-index: 9999;
  opacity: 1;
}
.braithwaite-flash .braithwaite-content {
  max-height: 90vh;
  width: 85vw;
  max-width: 360px;
  background-color: #1D4F4B;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content {
    width: 80vw;
    height: 70vh;
    max-width: 54.4444444444rem;
    max-height: 31.6666666667rem;
  }
}
.braithwaite-flash .braithwaite-close {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-close {
    position: absolute;
    display: block;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    margin-top: 0;
    width: 1.6666666667rem;
  }
}
.braithwaite-flash .braithwaite-content-inner {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner {
    height: 100%;
    justify-content: center;
    padding-top: 5%;
  }
}
.braithwaite-flash .braithwaite-content-inner .heading {
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner .heading {
    max-width: none;
    width: 41%;
  }
}
.braithwaite-flash .braithwaite-content-inner h3 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  color: #46B27E;
  text-transform: uppercase;
  font-size: 26px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner h3 {
    font-size: 2.2222222222rem;
    margin-top: 1.4444444444rem;
  }
}
.braithwaite-flash .braithwaite-content-inner .buttons {
  margin-top: 26px;
  width: 100%;
  max-width: 200px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner .buttons {
    margin-top: 2.7777777778rem;
    display: flex;
    max-width: none;
    justify-content: center;
  }
}
.braithwaite-flash .braithwaite-content-inner .buttons .button {
  width: 100%;
  height: 46px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner .buttons .button {
    font-size: 1.3333333333rem;
    width: 11.6666666667rem;
    padding: 0;
    height: 2.5rem;
    margin-top: 0 !important;
    padding-bottom: 0.1111111111rem;
  }
}
.braithwaite-flash .braithwaite-content-inner .buttons .button--apartments {
  background-color: transparent;
  outline: 1px solid #FFFFFF;
  outline-offset: -1px;
  transition: 0.2s;
}
.braithwaite-flash .braithwaite-content-inner .buttons .button--apartments:hover {
  background-color: #46B17C;
  outline: 1px solid #46B17C;
}
.braithwaite-flash .braithwaite-content-inner .buttons .button--book {
  background-color: #46B17C;
  transition: 0.2s;
}
.braithwaite-flash .braithwaite-content-inner .buttons .button--book:hover {
  background-color: #FFFFFF;
  color: #46B17C;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-content-inner .buttons .button--book {
    margin-left: 1.1111111111rem;
  }
}
.braithwaite-flash .braithwaite-graphic--left {
  display: none;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-graphic--left {
    height: 100%;
    display: block;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.braithwaite-flash .braithwaite-graphic--right {
  display: none;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-graphic--right {
    height: 100%;
    display: block;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.braithwaite-flash .braithwaite-graphic--mobile {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .braithwaite-flash .braithwaite-graphic--mobile {
    display: none;
  }
}

.shaping {
  background-color: #000000;
  padding-top: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .shaping {
    padding-top: 80px;
    padding-bottom: 70px;
    background: linear-gradient(180deg, black 0 340px, white 340px 100%);
  }
}
@media (min-width: 992px) {
  .shaping {
    padding-top: 100px;
    background: linear-gradient(180deg, black 0 440px, white 440px 100%);
  }
}
@media (min-width: 1300px) {
  .shaping {
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, black 0 540px, white 540px 100%);
  }
}
@media (min-width: 1600px) {
  .shaping {
    background: linear-gradient(180deg, black 0 750px, white 600px 100%);
  }
}
.shaping .shaping-intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
}
.shaping .shaping-intro .intro-text {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .shaping .shaping-intro .intro-text {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .shaping .shaping-intro .intro-text {
    margin-top: 40px;
    max-width: 70%;
  }
}
@media (min-width: 1600px) {
  .shaping .shaping-intro .intro-text {
    max-width: 50%;
    margin-top: 50px;
  }
}
.shaping .shaping-arrow {
  display: none;
}
@media (min-width: 768px) {
  .shaping .shaping-arrow {
    display: block;
    position: absolute;
    top: 50px;
    width: 40px;
    height: auto;
    z-index: 3;
    transition: 1s 0.5s;
  }
}
@media (min-width: 992px) {
  .shaping .shaping-arrow {
    top: 60px;
    width: 55px;
  }
}
@media (min-width: 1300px) {
  .shaping .shaping-arrow {
    top: 70px;
    width: 80px;
  }
}
.shaping .shaping-arrow--left {
  left: 0;
  transform: translateX(-100%);
}
.shaping .shaping-arrow--right {
  right: 0;
  transform: translateX(100%) scaleX(-1);
}
.shaping .shaping-heading {
  height: auto;
  max-width: 400px;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0s;
}
.shaping .shaping-heading--mobile {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .shaping .shaping-heading--mobile {
    display: none;
  }
}
.shaping .shaping-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .shaping .shaping-heading--desktop {
    display: block;
    width: 64%;
    max-width: none;
  }
}
.shaping .swiper-shaping-container {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .shaping .swiper-shaping-container {
    display: none;
  }
}
.shaping .swiper-shaping {
  position: relative;
}
.shaping .swiper-shaping .swiper-slide {
  height: 280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(0.7);
  transition: transform 0.3s;
}
.shaping .swiper-shaping .swiper-slide-active {
  transform: scale(1) translateY(70px);
}
.shaping .swipe-instruction {
  position: absolute;
  display: flex;
  top: 10%;
  left: 30%;
  width: 30%;
  height: auto;
  z-index: 3;
  align-items: center;
  transition: 0.5s;
}
.shaping .swipe-instruction span {
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 700;
}
.shaping .chevron-shaping {
  display: block;
}
.shaping .swiper-shaping-content-wrapper {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 60px;
}
.shaping .swiper-shaping-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.shaping .shaping-heading {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1;
}
@media (min-width: 768px) {
  .shaping .shaping-heading {
    text-align: center;
    font-size: 27px;
  }
}
@media (min-width: 992px) {
  .shaping .shaping-heading {
    font-size: 34px;
  }
}
@media (min-width: 1300px) {
  .shaping .shaping-heading {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .shaping .shaping-heading {
    font-size: 50px;
  }
}
.shaping .shaping-heading .shaping-heading-thin {
  font-weight: 300;
}
.shaping .shaping-heading .shaping-heading-bold {
  font-weight: 700;
  font-style: italic;
}
.shaping .shaping-main-content {
  margin-top: 20px;
  text-align: center;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .shaping .shaping-main-content {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .shaping .shaping-main-content {
    max-width: 90%;
  }
}
@media (min-width: 1600px) {
  .shaping .shaping-main-content {
    max-width: 70%;
  }
}
.shaping .shaping-cards-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .shaping .shaping-cards-wrapper {
    display: block;
    margin-top: 110px;
  }
}
@media (min-width: 1300px) {
  .shaping .shaping-cards-wrapper {
    margin-top: 160px;
  }
}
.shaping .shaping-cards {
  display: flex;
  justify-content: space-between;
}
.shaping .shaping-card {
  width: 31.5%;
  position: relative;
  opacity: 0;
  transition: opacity 1.2s 1s, transform 1s 1.7s;
}
.shaping .shaping-card:nth-of-type(1) {
  z-index: 2;
}
.shaping .chevron-shaping-cards {
  top: 0;
  right: -20%;
  transform: translateY(-50%);
  width: 42%;
  height: auto;
  z-index: -1;
}
.shaping .chevron-shaping-cards img {
  width: 100%;
  height: auto;
}
.shaping .arrows-shaping-cards {
  top: 10%;
  transform: translateX(50%);
  right: 0;
  width: 27%;
  height: auto;
  z-index: 2;
}
.shaping .arrows-shaping-cards img {
  width: 100%;
  height: auto;
}
.shaping .shaping-card-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 240px;
}
@media (min-width: 992px) {
  .shaping .shaping-card-img {
    height: 340px;
  }
}
@media (min-width: 1300px) {
  .shaping .shaping-card-img {
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .shaping .shaping-card-img {
    height: 440px;
  }
}
.shaping .shaping-card-content {
  margin-top: 20px;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1300px) {
  .shaping .shaping-card-content {
    margin-top: 30px;
  }
}
.shaping.in-view .shaping-heading {
  opacity: 1;
  transform: translateY(0);
}
.shaping.in-view .shaping-arrow--left {
  transform: translateX(0);
}
.shaping.in-view .shaping-arrow--right {
  transform: translateX(0) scaleX(-1);
}
.shaping.in-view .shaping-card {
  transform: translateY(0);
  opacity: 1;
}
.shaping.in-view .shaping-card:nth-of-type(2) {
  transform: translateY(-7%);
}

@media (min-width: 768px) {
  .vision-carousel {
    padding-bottom: 30px;
  }
}
@media (min-width: 1300px) {
  .vision-carousel {
    padding-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .vision-carousel {
    padding-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .explore {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .explore {
    margin-top: 100px;
  }
}
@media (min-width: 1300px) {
  .explore {
    margin-top: 130px;
  }
}
.explore .explore-heading--mobile {
  display: block;
}
@media (min-width: 768px) {
  .explore .explore-heading--mobile {
    display: none;
  }
}
.explore .explore-heading--mobile img {
  width: 100%;
  height: auto;
  max-width: 280px;
  filter: invert(1);
}
.explore .explore-heading--mobile .explore-intro {
  color: #FFFFFF;
  margin-top: 30px;
  text-align: center;
}
.explore .explore-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .explore .explore-heading--desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.explore .explore-heading--desktop img {
  width: 50%;
  max-width: none;
  height: auto;
}
.explore .explore-heading--desktop .explore-intro {
  margin-top: 30px;
  text-align: center;
  max-width: 80%;
}
@media (min-width: 992px) {
  .explore .explore-heading--desktop .explore-intro {
    margin-top: 40px;
  }
}
@media (min-width: 1300px) {
  .explore .explore-heading--desktop .explore-intro {
    margin-top: 60px;
    max-width: 70%;
  }
}
@media (min-width: 1600px) {
  .explore .explore-heading--desktop .explore-intro {
    max-width: 55%;
  }
}
.explore .explore-map.large {
  display: none;
}
@media (min-width: 768px) {
  .explore .explore-map.large {
    display: block;
  }
}
.explore .explore-map.large .explore-map-container {
  position: relative;
}
.explore .explore-map.large .explore-map-inner {
  max-height: 90vh;
}
.explore .explore-map.large .map-img,
.explore .explore-map.large .overlay-img {
  max-height: none;
  width: 700px;
}
@media (min-width: 768px) {
  .explore .explore-map.large .map-img,
.explore .explore-map.large .overlay-img {
    width: 110%;
  }
}
.explore .explore-map.large .explore-map-container {
  display: block;
}
.explore .explore-map.large .overlay-info {
  display: none;
  min-width: 63px;
  right: 36%;
  top: 5%;
}
@media (min-width: 768px) {
  .explore .explore-map.large .overlay-info {
    top: 5%;
    right: 22%;
    transform: none;
  }
  .explore .explore-map.large .overlay-info:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 992px) {
  .explore .explore-map.large .overlay-info {
    top: 10%;
  }
}
.explore .explore-map.large .overlay-info.active {
  display: flex;
}
.explore .explore-map.large .map-colour-key {
  min-width: 50px;
}
.explore .explore-map.large #map-key {
  min-width: 90px;
  left: 55%;
  right: unset;
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .explore .explore-map.large #map-key {
    right: 10%;
    left: unset;
  }
}
.explore .explore-map-container {
  display: none;
}
@media (min-width: 768px) {
  .explore .explore-map-container {
    margin-top: 80px;
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }
}
.explore .explore-map-inner {
  position: relative;
}
.explore #map-key {
  position: absolute;
  width: 18%;
  right: 13.5%;
  z-index: 3;
  top: 0%;
}
@media (min-width: 992px) {
  .explore #map-key {
    top: 0%;
  }
}
.explore #map-key .key-item {
  cursor: pointer;
}
.explore #map-key .key-item.active#green-loop .key-rect {
  fill: #aeb897;
}
.explore #map-key .key-item.active#aberfeldy-street .key-rect {
  fill: #cb7260;
}
.explore #map-key .key-item.active#enterprise-yard .key-rect {
  fill: #e4b265;
}
.explore #map-key .key-item.active#community-lane .key-rect {
  fill: #b07ea6;
}
.explore .hover-hint {
  position: absolute;
  top: 4%;
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  font-size: 10px;
}
@media (min-width: 768px) {
  .explore .hover-hint {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .explore .hover-hint {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .explore .hover-hint {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .explore .hover-hint {
    font-size: 20px;
  }
}
.explore .hover-hint img {
  display: block;
  filter: invert(1);
  width: 1.2em;
}
.explore .hover-hint span {
  display: block;
  margin-left: 0.8em;
  padding-top: 0.1em;
}
.explore .map-overlay {
  display: none;
}
.explore .map-overlay.active {
  display: block;
}
.explore .map-colour-key {
  width: 7.4%;
  height: auto;
  position: absolute;
  left: 4.2%;
  top: 65.7%;
}
.explore .overlay-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 90vh;
}
.explore .overlay-info {
  position: absolute;
  right: 35%;
  top: 5%;
  width: 12.7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .explore .overlay-info {
    top: 10%;
    right: 22%;
  }
}
.explore .overlay-info:hover {
  transform: scale(1.05);
}
.explore .overlay-info .info-img {
  display: block;
  width: 100%;
  height: auto;
}
.explore .overlay-info .info-read {
  margin-top: 10%;
  width: 60%;
  display: block;
  height: auto;
}
.explore .map-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 90vh;
}
.explore .map-img.hidden {
  display: none;
}
.explore .explore-carousel {
  background-color: #000000;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .explore .explore-carousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .explore .explore-carousel {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .explore .explore-carousel {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.explore .explore-carousel .carousel-wrapper {
  margin-top: 50px;
}

.timeline-section {
  background-color: #F7F7F7;
  padding: 80px 0;
}
@media (min-width: 992px) {
  .timeline-section {
    padding-bottom: 100px;
  }
}
@media (min-width: 1300px) {
  .timeline-section {
    padding-bottom: 120px;
    padding-top: 100px;
  }
}
.timeline-section .timeline-buttons-section {
  display: none;
}
@media (min-width: 768px) {
  .timeline-section .timeline-buttons-section {
    display: block;
    margin: 0 calc((100vw - 720px) / 2);
    margin-top: 30px !important;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline-buttons-section {
    margin: 0 calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline-buttons-section {
    margin: 0 calc((100vw - 1170px) / 2);
  }
}
@media (min-width: 1600px) {
  .timeline-section .timeline-buttons-section {
    margin: 0 calc((100vw - 1470px) / 2);
  }
}
.timeline-section hr {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
}
.timeline-section .timeline-buttons {
  display: flex;
}
.timeline-section .timeline-buttons .timeline-button {
  position: relative;
  width: 40px;
  height: 40px;
  background-image: url("../../img/graphics/carousel-arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .timeline-section .timeline-buttons .timeline-button {
    width: 50px;
    height: 50px;
  }
}
.timeline-section .timeline-buttons .timeline-button::after {
  content: "";
}
.timeline-section .timeline-buttons .timeline-button-next {
  transform: scaleX(-1);
  margin-left: 10px;
}
.timeline-section .timeline-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .timeline-section .timeline-intro {
    display: none;
  }
}
.timeline-section .timeline-intro .heading-img {
  width: 100%;
  max-width: 250px;
}
.timeline-section .timeline-intro .heading-img img {
  width: 100%;
}
.timeline-section .timeline-intro .intro-text {
  margin-top: 40px;
}
.timeline-section .timeline-wrapper {
  overflow-x: scroll;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .timeline-section .timeline-wrapper {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline-wrapper {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline-wrapper {
    padding-left: calc((100vw - 1170px) / 2);
  }
}
@media (min-width: 1600px) {
  .timeline-section .timeline-wrapper {
    padding-left: calc((100vw - 1470px) / 2);
  }
}
.timeline-section .timeline-wrapper:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.timeline-section .timeline-wrapper::-webkit-scrollbar {
  display: none;
}
.timeline-section .timeline {
  display: flex;
  margin-top: 50px;
  position: relative;
  width: auto;
}
.timeline-section .timeline .swipe {
  margin-right: 40px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.timeline-section .timeline .swipe .swipe-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.timeline-section .timeline .swipe img {
  display: block;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .timeline-section .timeline .swipe--mobile {
    display: none;
  }
}
.timeline-section .timeline .swipe--desktop {
  display: none;
}
@media (min-width: 768px) {
  .timeline-section .timeline .swipe--desktop {
    display: block;
    position: absolute;
    left: -140px;
    top: 115px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .swipe--desktop {
    top: 135px;
    left: -140px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .swipe--desktop {
    top: 155px;
    left: -140px;
  }
}
.timeline-section .timeline .swipe--desktop .swipe-text {
  font-size: 14px;
  position: relative;
  left: 5%;
}
.timeline-section .timeline .swipe--desktop img {
  transform: scaleX(-1);
  height: 44px;
  width: auto;
}
@media (min-width: 992px) {
  .timeline-section .timeline .swipe--desktop img {
    height: 48px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .swipe--desktop img {
    height: 52px;
  }
}
.timeline-section .timeline .timeline-item-intro {
  display: none;
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 12px;
    min-width: 280px;
    margin-right: 160px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .timeline-item-intro {
    min-width: 320px;
    margin-right: 180px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item-intro {
    min-width: 360px;
    font-size: 14px;
    margin-right: 200px;
  }
}
.timeline-section .timeline .timeline-item-intro::after {
  content: "";
  height: 1px;
  background-color: #989898;
  position: absolute;
  top: 210px;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item-intro::after {
    top: 250px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .timeline-item-intro::after {
    top: 290px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item-intro::after {
    top: 340px;
  }
}
.timeline-section .timeline .timeline-item-intro .intro-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item-intro .intro-top {
    height: 230px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .timeline-item-intro .intro-top {
    height: 270px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item-intro .intro-top {
    height: 310px;
  }
}
.timeline-section .timeline .timeline-item-intro .intro-top h2 img {
  display: block;
  width: 100%;
  height: auto;
}
.timeline-section .timeline .timeline-item-intro .intro-bottom {
  margin-top: 50px;
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item-intro .intro-bottom {
    margin-top: 70px;
  }
}
.timeline-section .timeline .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.timeline-section .timeline .timeline-item::after {
  content: "";
  height: 1px;
  background-color: #989898;
  position: absolute;
  top: 210px;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item::after {
    top: 250px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .timeline-item::after {
    top: 290px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item::after {
    top: 340px;
  }
}
.timeline-section .timeline .timeline-item:not(:last-of-type) {
  padding-right: 60px;
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item:not(:last-of-type) {
    padding-right: 80px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item:not(:last-of-type) {
    padding-right: 100px;
  }
}
@media (min-width: 768px) {
  .timeline-section .timeline .timeline-item:last-of-type {
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .timeline-item:last-of-type {
    padding-right: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .timeline-item:last-of-type {
    padding-right: calc((100vw - 1170px) / 2);
  }
}
@media (min-width: 1600px) {
  .timeline-section .timeline .timeline-item:last-of-type {
    padding-right: calc((100vw - 1470px) / 2);
  }
}
.timeline-section .timeline .item-top {
  display: flex;
  align-items: flex-end;
  height: 190px;
  width: auto;
}
@media (min-width: 768px) {
  .timeline-section .timeline .item-top {
    height: 230px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .item-top {
    height: 270px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .item-top {
    height: 310px;
  }
}
.timeline-section .timeline .item-top img {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.timeline-section .timeline .item-top--narrow img {
  max-width: 300px;
}
@media (min-width: 768px) {
  .timeline-section .timeline .item-top--narrow img {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .timeline-section .timeline .item-top--narrow img {
    max-width: 400px;
  }
}
@media (min-width: 1300px) {
  .timeline-section .timeline .item-top--narrow img {
    max-width: 450px;
  }
}
.timeline-section .timeline .item-bottom {
  margin-top: 50px;
  position: relative;
  display: flex;
}
@media (min-width: 1300px) {
  .timeline-section .timeline .item-bottom {
    margin-top: 70px;
  }
}
.timeline-section .timeline .item-bottom .bottom-left {
  position: relative;
}
.timeline-section .timeline .item-bottom .bottom-left::before {
  content: "";
  width: 1px;
  background-color: #989898;
  position: absolute;
  top: -10px;
  transform: translateY(-100%);
  height: 20px;
  display: block;
  left: 50%;
}
@media (min-width: 1300px) {
  .timeline-section .timeline .item-bottom .bottom-left::before {
    height: 30px;
  }
}
.timeline-section .timeline .item-bottom .bottom-right {
  margin-left: 30px;
  text-align: left;
  min-width: 210px;
  font-size: 12px;
}
@media (min-width: 1300px) {
  .timeline-section .timeline .item-bottom .bottom-right {
    font-size: 14px;
    min-width: 260px;
  }
}
.timeline-section .timeline .item-bottom .year {
  font-family: acumin-pro-condensed, sans-serif;
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}
.timeline-section .timeline .item-bottom .year .no-wrap {
  white-space: nowrap;
}
.timeline-section .timeline .item-bottom .year--text {
  font-size: 30px;
}
.timeline-section .timeline .item-bottom .event {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  color: #A7A7A7;
}

.partners {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .partners {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .partners {
    padding-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .partners {
    padding-bottom: 100px;
    padding-top: 140px;
  }
}
.partners hr {
  height: 1px;
  background-color: #989898;
  border: none;
  padding: 0;
  margin: 0;
}
.partners .partners-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .partners .partners-content {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .partners .partners-content {
    padding-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .partners .partners-content {
    padding-bottom: 100px;
  }
}
.partners .partners-content .heading-img img {
  width: 100%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .partners .partners-content .heading-img img {
    width: 35%;
    max-width: none;
  }
}
.partners .partners-cols {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .partners .partners-cols {
    margin-top: 70px;
    display: flex;
    align-items: baseline;
  }
}
@media (min-width: 1300px) {
  .partners .partners-cols {
    margin-top: 100px;
  }
}
.partners .partner-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners .partner-col:not(:first-of-type) {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .partners .partner-col:not(:first-of-type) {
    border-left: 1px solid #DBDBDB;
  }
}
@media (min-width: 768px) {
  .partners .partner-col {
    width: 50%;
    margin-top: 0 !important;
  }
}
.partners .partner-col a {
  display: block;
}
.partners .partner-col:not(:has(.partner-text)) {
  justify-content: center;
}
@media (min-width: 768px) {
  .partners .partner-col:first-of-type .partner-logo {
    height: auto !important;
    width: auto !important;
  }
}
.partners .partner-col:first-of-type .partner-logo img {
  width: 100px;
}
@media (min-width: 768px) {
  .partners .partner-col:first-of-type .partner-logo img {
    width: 120px;
  }
}
@media (min-width: 992px) {
  .partners .partner-col:first-of-type .partner-logo img {
    width: 140px;
  }
}
.partners .partner-logo {
  display: inline-block;
}
@media (min-width: 768px) {
  .partners .partner-logo {
    width: 196px;
    height: 56px;
  }
}
@media (min-width: 992px) {
  .partners .partner-logo {
    width: 224px;
    height: 64px;
  }
}
@media (min-width: 1600px) {
  .partners .partner-logo {
    width: 280px;
    height: 80px;
  }
}
.partners .partner-logo img {
  display: inline-block;
  width: 180px;
}
@media (min-width: 768px) {
  .partners .partner-logo img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
.partners .partner-text {
  margin-top: 34px;
}
@media (min-width: 768px) {
  .partners .partner-text {
    width: 80%;
  }
}
@media (min-width: 1300px) {
  .partners .partner-text {
    margin-top: 50px;
    width: 75%;
  }
}
@media (min-width: 1600px) {
  .partners .partner-text {
    width: 65%;
  }
}

.option-2 .oxbow-aerial {
  width: 100%;
}
.option-2 .oxbow-aerial img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .option-2 .explore-carousel {
    margin-top: 5.5555555556rem;
  }
}
.option-2 .visit-masterplan {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2.2222222222rem;
}
.option-2 .visit-masterplan a {
  font-family: acumin-pro-extra-condensed, sans-serif;
  color: #000000;
  text-transform: uppercase;
  margin: 0 2.7777777778rem;
  line-height: 1;
  font-size: 30px;
  min-width: 160px;
}
@media (min-width: 768px) {
  .option-2 .visit-masterplan a {
    font-size: 40px;
    padding-bottom: 0.4444444444rem;
  }
}
@media (min-width: 992px) {
  .option-2 .visit-masterplan a {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .option-2 .visit-masterplan a {
    font-size: 60px;
  }
}
.option-2 .visit-masterplan img {
  display: block;
  filter: invert(1);
  height: 3.3333333333rem;
}
.option-2 .visit-masterplan img.chevron-right {
  transform: scaleX(-1);
}

.apartments .apartment {
  padding-top: 60px;
  color: #FFFFFF;
  position: relative;
}
.apartments .apartment#apartment-1 .apartment-expandables, .apartments .apartment#apartment-2 .apartment-expandables {
  display: none;
}
@media (min-width: 768px) {
  .apartments .apartment {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .apartments .apartment {
    padding-top: 100px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment {
    padding-top: 130px;
  }
}
.apartments .apartment-content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .apartments .apartment-content-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-top {
    width: 90%;
    margin-bottom: 100px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-top {
    margin-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .apartments .apartment-content-top .heading-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-self: flex-end;
    z-index: 2;
  }
}
.apartments .apartment-content-top .heading-img--braithwaite img {
  width: 100%;
  max-width: 260px;
}
@media (min-width: 768px) {
  .apartments .apartment-content-top .heading-img--braithwaite img {
    width: 34%;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-top .heading-img--braithwaite img {
    width: 40%;
  }
}
.apartments .apartment-content-top .heading-img--kantha img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
@media (min-width: 768px) {
  .apartments .apartment-content-top .heading-img--kantha img {
    width: 160px;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-top .heading-img--kantha img {
    width: 180px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-top .heading-img--kantha img {
    width: 240px;
  }
}
.apartments .apartment-content-top .heading-img--johanna img {
  width: 100%;
  max-width: 200px;
}
@media (min-width: 768px) {
  .apartments .apartment-content-top .heading-img--johanna img {
    width: 32%;
    max-width: none;
  }
}
.apartments .apartment-corner-text {
  font-size: 36px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 768px) {
  .apartments .apartment-corner-text {
    order: -1;
    margin-top: 0;
  }
}
.apartments .apartment-corner-text .corner-text-bold {
  font-weight: 500;
}
@media (min-width: 768px) {
  .apartments .apartment-corner-text .corner-text-bold {
    font-weight: 600;
  }
}
.apartments .apartment-corner-text .corner-text-thin {
  font-weight: 300;
  font-style: italic;
}
.apartments .apartment-downloads {
  margin-top: 44px;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .apartments .apartment-downloads {
    width: 180px;
    margin-top: 0;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-downloads {
    width: 200px;
  }
}
@media (min-width: 768px) {
  .apartments .apartment-downloads .button {
    font-size: 18px;
    height: 40px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-downloads .button {
    font-size: 22px;
    height: 44px;
  }
}
.apartments .apartment-downloads .button img {
  height: 0.8em;
}
.apartments .apartment-carousel {
  margin-top: 40px;
}
.apartments .apartment-carousel--green {
  background: linear-gradient(to bottom, #FFFFFF 0 50%, #1D4F4B 50% 100%);
}
@media (min-width: 768px) {
  .apartments .apartment-carousel--green {
    background: linear-gradient(to bottom, #FFFFFF 0 75%, #1D4F4B 75% 100%);
  }
}
.apartments .apartment-carousel--blue {
  background: linear-gradient(to bottom, #FFFFFF 0 50%, #04A8B7 50% 100%);
}
@media (min-width: 768px) {
  .apartments .apartment-carousel--blue {
    background: linear-gradient(to bottom, #FFFFFF 0 75%, #04A8B7 75% 100%);
  }
}
.apartments .apartment-carousel--red {
  background: linear-gradient(to bottom, #FFFFFF 0 50%, #623337 50% 100%);
}
@media (min-width: 768px) {
  .apartments .apartment-carousel--red {
    background: linear-gradient(to bottom, #FFFFFF 0 75%, #623337 75% 100%);
  }
}
.apartments .apartment-content-bottom {
  padding-top: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom {
    padding-bottom: 60px;
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom {
    padding-bottom: 80px;
    padding-top: 130px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom {
    padding-bottom: 100px;
    padding-top: 160px;
  }
}
.apartments .apartment-content-bottom--green {
  background-color: #1D4F4B;
}
.apartments .apartment-content-bottom--green .apartment-graphic-mobile {
  display: block;
  margin-top: max(40px, 9vw);
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-mobile {
    display: none;
  }
}
.apartments .apartment-content-bottom--green .apartment-graphic-desktop {
  display: none;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-desktop {
    display: block;
    position: absolute;
    height: auto;
  }
}
.apartments .apartment-content-bottom--green .apartment-graphic-desktop--left {
  left: 0;
  top: -185px;
  width: 100px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-desktop--left {
    width: 130px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-desktop--left {
    width: 170px;
  }
}
.apartments .apartment-content-bottom--green .apartment-graphic-desktop--right {
  right: 0;
  bottom: 0;
  width: 100px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-desktop--right {
    width: 130px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom--green .apartment-graphic-desktop--right {
    width: 170px;
  }
}
.apartments .apartment-content-bottom--blue {
  background-color: #04A8B7;
}
.apartments .apartment-content-bottom--blue .apartment-graphic-mobile {
  display: block;
  margin-top: max(40px, 9vw);
  width: 70%;
  max-width: 220px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--blue .apartment-graphic-mobile {
    display: none;
  }
}
.apartments .apartment-content-bottom--blue .apartment-graphic-desktop {
  display: none;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--blue .apartment-graphic-desktop {
    display: block;
    position: absolute;
    height: 80%;
    width: auto;
    top: 50%;
  }
}
.apartments .apartment-content-bottom--blue .apartment-graphic-desktop--left {
  left: 0;
  transform: translateY(-50%);
}
.apartments .apartment-content-bottom--blue .apartment-graphic-desktop--right {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
.apartments .apartment-content-bottom--red {
  background-color: #623337;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--red {
    padding-bottom: 0;
  }
}
.apartments .apartment-content-bottom--red .content-arrow-wrapper {
  padding-bottom: calc(30vw + 50px);
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom--red .content-arrow-wrapper {
    padding-bottom: 12vw;
  }
}
.apartments .apartment-content-bottom .content-arrow-wrapper {
  position: relative;
}
.apartments .apartment-content-bottom .content-center {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .content-center {
    flex-direction: row;
    width: 90%;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .content-center {
    width: 80%;
  }
}
@media (min-width: 1600px) {
  .apartments .apartment-content-bottom .content-center {
    width: 75%;
  }
}
.apartments .apartment-content-bottom .content-center .content-arty-heading {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 200px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .content-center .content-arty-heading {
    max-width: none;
    margin: unset;
    width: 250px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .content-center .content-arty-heading {
    width: 300px;
  }
}
.apartments .apartment-content-bottom .content-main {
  max-width: 100%;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom .content-main {
    width: 450px;
    margin: 40px auto 0px auto;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .content-main {
    text-align: left;
    margin: unset;
    margin-top: 0;
    width: 400px;
  }
}
.apartments .apartment-content-bottom .content-heading {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .content-heading {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .content-heading {
    font-size: 44px;
  }
}
.apartments .apartment-content-bottom .apartment-expandables {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom .apartment-expandables {
    margin-top: 80px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .apartment-expandables {
    width: 80%;
    margin-top: 150px;
  }
}
.apartments .apartment-content-bottom .apartment-expandable:not(:first-of-type) {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .apartment-expandable {
    margin-top: 20px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .apartment-expandable {
    margin-top: 30px;
  }
}
.apartments .apartment-content-bottom .apartment-expandable.open .expandable-label {
  border-bottom: 2px solid #FFFFFF;
}
.apartments .apartment-content-bottom .apartment-expandable.open .expandable-content {
  display: block;
}
.apartments .apartment-content-bottom .expandable-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #FFFFFF;
  height: 40px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .expandable-label {
    font-size: 20px;
    height: 50px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .expandable-label {
    font-size: 28px;
    height: 70px;
  }
}
.apartments .apartment-content-bottom .expandable-label span {
  display: block;
  font-size: 1.25em;
}
.apartments .apartment-content-bottom .expandable-content {
  display: none;
}
.apartments .apartment-content-bottom .availability-table {
  width: 100%;
  text-align: center;
  font-size: 7.5px;
}
@media (min-width: 768px) {
  .apartments .apartment-content-bottom .availability-table {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .availability-table {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .availability-table {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .apartments .apartment-content-bottom .availability-table {
    font-size: 18px;
  }
}
.apartments .apartment-content-bottom .availability-table th {
  font-weight: 500;
}
.apartments .apartment-content-bottom .availability-table th,
.apartments .apartment-content-bottom .availability-table td {
  padding: 2em 0;
  border-bottom: 1px solid #FFFFFF;
  vertical-align: middle;
}
.apartments .apartment-content-bottom .availability-table th:not(:last-of-type),
.apartments .apartment-content-bottom .availability-table td:not(:last-of-type) {
  padding-right: 10px;
}
.apartments .apartment-content-bottom .availability-table th a,
.apartments .apartment-content-bottom .availability-table td a {
  color: #FFFFFF;
  text-decoration: underline;
}
.apartments .apartment-content-bottom .availability-table .availability-row--reserved {
  color: rgba(255, 255, 255, 0.7);
}
.apartments .apartment-content-bottom .availability-table .availability-row--reserved a {
  color: rgba(255, 255, 255, 0.7);
}
.apartments .apartment-content-bottom .specification-details {
  margin-top: 2em;
}
.apartments .apartment-content-bottom .specification-details h5 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-size: 22px;
}
@media (min-width: 992px) {
  .apartments .apartment-content-bottom .specification-details h5 {
    font-size: 26px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-content-bottom .specification-details h5 {
    font-size: 30px;
  }
}
.apartments .apartment-content-bottom .specification-details h5:not(:first-of-type) {
  margin-top: 1.2em;
}
.apartments .apartment-content-bottom .specification-details ul {
  display: table;
  margin-top: 1em;
  list-style-position: outside;
}
.apartments .apartment-content-bottom .specification-details ul li {
  display: table-row;
}
.apartments .apartment-content-bottom .specification-details ul li::before {
  content: "•";
  font-size: 0.8em;
  display: table-cell;
  padding-right: 1em;
}
.apartments .apartment-collapse {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .apartments .apartment-collapse {
    margin-top: 50px;
  }
}
@media (min-width: 1300px) {
  .apartments .apartment-collapse {
    margin-top: 60px;
  }
}
.apartments .apartment-collapse.hidden {
  display: none;
}
.apartments .apartment-collapse .collapsable {
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 500;
  font-size: 28px;
  padding-bottom: 8px;
}
@media (min-width: 1300px) {
  .apartments .apartment-collapse .collapsable {
    font-size: 36px;
  }
}
.apartments .apartment-collapse span {
  height: 1px;
  display: block;
  background: #FFFFFF;
  flex: 1;
}
.apartments .apartment-collapse span:nth-of-type(1) {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .apartments .apartment-collapse span:nth-of-type(1) {
    margin-right: 20px;
  }
}
.apartments .apartment-collapse span:nth-of-type(2) {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .apartments .apartment-collapse span:nth-of-type(2) {
    margin-left: 20px;
  }
}

.apartment-red-graphic {
  display: none;
}
@media (min-width: 768px) {
  .apartment-red-graphic--one {
    display: block;
    position: absolute;
    top: -188px;
    right: 0;
    width: 18vw;
    height: auto;
  }
}
@media (min-width: 992px) {
  .apartment-red-graphic--one {
    top: -250px;
  }
}
@media (min-width: 1300px) {
  .apartment-red-graphic--one {
    top: -308px;
  }
}
@media (min-width: 1600px) {
  .apartment-red-graphic--one {
    top: -348px;
  }
}
@media (min-width: 768px) {
  .apartment-red-graphic--two {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15vw;
    height: auto;
  }
}
.apartment-red-graphic--three {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30vw;
  height: auto;
}
@media (min-width: 768px) {
  .apartment-red-graphic--three {
    width: 15vw;
  }
}

.life-slider {
  color: #FFFFFF;
  padding: 70px 0 40px 0;
  background-color: #BA3E26;
}
.life-slider .slider-wrapper {
  align-items: stretch;
}
.life-slider .swiper-life .swiper-slide .row {
  flex: 1;
  margin: 0px 0px;
  align-items: stretch;
  flex-direction: column-reverse;
}
.life-slider .swiper-life .swiper-slide .row .slide-col {
  width: 100%;
}
.life-slider .swiper-life .swiper-slide .row .slide-col.slide-col-image {
  height: 100%;
}
.life-slider .swiper-life .swiper-slide .row .slide-col.slide-col-image .slide-col-inner .image-wrap {
  flex: 1;
  height: 100%;
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .row .slide-col.slide-col-image .slide-col-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.life-slider .swiper-life .swiper-slide .row .slide-col.slide-col-about .slide-col-inner {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .row .slide-col {
    width: 50%;
    display: flex;
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .row {
    flex-direction: row;
  }
}
.life-slider .swiper-life .swiper-slide .image-wrap .image {
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .life-slider .swiper-life .swiper-slide .image-wrap .image {
    aspect-ratio: 25/15;
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .image-wrap .image {
    aspect-ratio: unset;
    height: calc(100% - 80px);
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .image-wrap {
    padding-right: 50px;
  }
}
@media (min-width: 1300px) {
  .life-slider .swiper-life .swiper-slide .image-wrap {
    padding-right: 0px;
  }
}
.life-slider .swiper-life .swiper-slide .about-wrap {
  width: 100%;
  display: flex;
  max-width: 100%;
  margin-bottom: 60px;
  flex-direction: column;
  justify-content: space-between;
}
.life-slider .swiper-life .swiper-slide .about-wrap .heading-img {
  height: auto;
  max-width: 100%;
  margin: 60px 0px 30px 0px;
  justify-content: flex-start;
}
.life-slider .swiper-life .swiper-slide .about-wrap .heading-img img,
.life-slider .swiper-life .swiper-slide .about-wrap .heading-img svg {
  max-width: 275px;
  max-height: 100px;
}
@media (min-width: 768px) {
  .life-slider .swiper-life .swiper-slide .about-wrap .heading-img img,
.life-slider .swiper-life .swiper-slide .about-wrap .heading-img svg {
    max-width: 300px;
    max-height: 125px;
  }
}
@media (min-width: 1300px) {
  .life-slider .swiper-life .swiper-slide .about-wrap .heading-img img,
.life-slider .swiper-life .swiper-slide .about-wrap .heading-img svg {
    max-width: 100%;
    max-height: unset;
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .about-wrap .heading-img {
    margin: 0px 0px 35px 0px;
  }
}
.life-slider .swiper-life .swiper-slide .about-wrap .body p {
  margin: 0px 0px 20px 0px;
}
.life-slider .swiper-life .swiper-slide .about-wrap .body p:last-of-type {
  margin-bottom: 0px;
}
.life-slider .swiper-life .swiper-slide .about-wrap .btn-wrap {
  margin-top: 35px;
}
.life-slider .swiper-life .swiper-slide .about-wrap .btn-wrap .button {
  width: auto;
  height: 45px;
  padding: 0px 10px;
  display: inline-flex;
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide .about-wrap {
    width: 505px;
    margin-bottom: 0px;
  }
}
@media (min-width: 1300px) {
  .life-slider .swiper-life .swiper-slide .about-wrap {
    width: unset;
    padding-left: 100px;
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-life .swiper-slide {
    height: 100%;
    display: flex;
  }
}
.life-slider .swiper-buttons-wrapper {
  position: relative;
  display: flex;
  bottom: 0px;
  width: 100%;
}
.life-slider .swiper-buttons-wrapper .swiper-buttons {
  position: absolute;
  display: flex;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 2;
}
@media (min-width: 992px) {
  .life-slider .swiper-buttons-wrapper .swiper-buttons {
    position: initial;
    transform: none;
    align-self: flex-start;
  }
}
@media (min-width: 992px) {
  .life-slider .swiper-buttons-wrapper .swiper-buttons--mobile {
    display: none;
  }
}
.life-slider .swiper-buttons-wrapper .swiper-buttons--desktop {
  display: none;
}
@media (min-width: 992px) {
  .life-slider .swiper-buttons-wrapper .swiper-buttons--desktop {
    display: flex;
  }
}
.life-slider .swiper-buttons-wrapper .swiper-button-custom {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  background-image: url("../../img/graphics/carousel-arrow-left-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
}
@media (min-width: 1300px) {
  .life-slider .swiper-buttons-wrapper .swiper-button-custom {
    width: 50px;
    height: 50px;
  }
}
.life-slider .swiper-buttons-wrapper .swiper-button-custom::after {
  content: "";
}
.life-slider .swiper-buttons-wrapper .swiper-button-custom-next {
  transform: scaleX(-1);
  margin-left: 10px;
}
@media (min-width: 992px) {
  .life-slider .swiper-buttons-wrapper {
    margin-top: 30px;
    position: absolute;
  }
}
.life-slider .life-slider-carousel-wrapper {
  position: relative;
}
.life-slider .life-slider-carousel-wrapper:before {
  top: -1px;
  right: 100%;
  content: "";
  z-index: 999;
  width: 3000px;
  position: absolute;
  height: calc(100% + 1px);
  background-color: #BA3E26;
}
.life-slider .life-slider-carousel-wrapper:after {
  top: -1px;
  left: 100%;
  content: "";
  z-index: 999;
  width: 3000px;
  position: absolute;
  height: calc(100% + 1px);
  background-color: #BA3E26;
}
@media (min-width: 992px) {
  .life-slider {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .life-slider {
    padding: 80px 0;
  }
}

.whatever .whatever-black {
  padding-top: 80px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 768px) {
  .whatever .whatever-black {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .whatever .whatever-black {
    padding-top: 130px;
  }
}
@media (min-width: 1300px) {
  .whatever .whatever-black {
    padding-top: 160px;
  }
}
.whatever .whatever-intro {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .whatever .whatever-intro {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .whatever .heading-img {
    width: 34%;
  }
}
.whatever .heading-img img {
  max-width: 260px;
}
@media (min-width: 768px) {
  .whatever .heading-img img {
    max-width: none;
    width: 100%;
  }
}
.whatever .intro-text {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .whatever .intro-text {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .whatever .intro-text {
    width: 50%;
  }
}
.whatever .whatever-carousel-wrapper {
  background-color: #000000;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .whatever .whatever-carousel-wrapper {
    background: linear-gradient(to bottom, #000000 0 50%, #FFFFFF 50% 100%);
    color: #000000;
  }
}
.whatever .whatever-carousel-wrapper.in-view .swipe-instruction {
  transform: translateX(0);
}
.whatever .swiper-whatever {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .whatever .swiper-whatever {
    padding-bottom: 160px;
    padding-left: 12%;
  }
}
@media (min-width: 992px) {
  .whatever .swiper-whatever {
    padding-bottom: 170px;
  }
}
@media (min-width: 1300px) {
  .whatever .swiper-whatever {
    padding-bottom: 190px;
    padding-top: 90px;
  }
}
@media (min-width: 768px) {
  .whatever .swiper-slide:nth-of-type(2n) {
    top: 80px;
  }
}
@media (min-width: 768px) {
  .whatever .swiper-slide:nth-of-type(1) {
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .whatever .swiper-slide:nth-of-type(2) {
    z-index: 3;
  }
}
.whatever .slide-img {
  height: 280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transform: none !important;
}
@media (min-width: 768px) {
  .whatever .slide-img {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .whatever .slide-img {
    height: 340px;
  }
}
@media (min-width: 1300px) {
  .whatever .slide-img {
    height: 420px;
  }
}
.whatever .slide-label {
  position: absolute;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: acumin-pro, sans-serif;
  line-height: 1;
  z-index: 4;
}
.whatever .slide-label--gym {
  right: -50px;
  bottom: 10%;
}
@media (min-width: 768px) {
  .whatever .slide-label--gym {
    bottom: 0;
    left: 0;
    right: auto;
    transform: translateX(-20%) translateY(60%);
  }
}
@media (min-width: 992px) {
  .whatever .slide-label--gym {
    font-size: 60px;
  }
}
@media (min-width: 1300px) {
  .whatever .slide-label--gym {
    font-size: 75px;
  }
}
.whatever .slide-label--concierge {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: italic;
  bottom: 10%;
  right: -50px;
}
@media (min-width: 768px) {
  .whatever .slide-label--concierge {
    bottom: 0;
    left: 0;
    right: auto;
    transform: translateX(-20%) translateY(80%);
  }
}
@media (min-width: 992px) {
  .whatever .slide-label--concierge {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .whatever .slide-label--concierge {
    font-size: 62px;
  }
}
.whatever .slide-label--coworking {
  font-weight: 300;
  font-style: italic;
  bottom: -50px;
  right: 10px;
  font-size: 30px;
}
@media (min-width: 768px) {
  .whatever .slide-label--coworking {
    bottom: 0;
    left: 0;
    right: auto;
    transform: translateX(10%) translateY(60%);
  }
}
@media (min-width: 992px) {
  .whatever .slide-label--coworking {
    font-size: 42px;
  }
}
@media (min-width: 1300px) {
  .whatever .slide-label--coworking {
    font-size: 55px;
  }
}
.whatever .slide-label--park {
  font-family: acumin-pro-extra-condensed;
  font-weight: 500;
  font-style: italic;
  bottom: 45%;
  left: -20px;
  font-size: 40px;
}
@media (min-width: 768px) {
  .whatever .slide-label--park {
    bottom: 0;
    left: 0;
    right: auto;
    transform: translateX(40%) translateY(80%);
  }
}
@media (min-width: 992px) {
  .whatever .slide-label--park {
    font-size: 60px;
  }
}
@media (min-width: 1300px) {
  .whatever .slide-label--park {
    font-size: 75px;
  }
}
.whatever .swipe-instruction {
  position: absolute;
  height: auto;
  display: flex;
  justify-content: flex-end;
  top: 6%;
  right: -20%;
  text-transform: uppercase;
  align-items: center;
  z-index: 2;
  width: 100%;
  color: #FFFFFF;
  transform: translateX(-200%);
  transition: 1.2s 0s;
}
@media (min-width: 768px) {
  .whatever .swipe-instruction {
    transform: translateX(-300%);
    right: -30%;
  }
}
.whatever .swipe-instruction span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.whatever .swipe-instruction img {
  filter: invert(1);
  width: 60%;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .whatever .swipe-instruction img {
    width: 70%;
  }
}
.whatever .swiper-buttons {
  display: none;
}
@media (min-width: 768px) {
  .whatever .swiper-buttons {
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .whatever .swiper-button-custom {
    width: 40px;
    height: 40px;
    background-image: url("../../img/graphics/carousel-arrow-left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  .whatever .swiper-button-custom-next {
    transform: scaleX(-1);
    margin-left: 10px;
  }
}

.coming-soon {
  background-color: #1D4F4B;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}
@media (min-width: 992px) {
  .coming-soon {
    padding: 90px 0;
  }
}
@media (min-width: 1300px) {
  .coming-soon {
    padding: 110px 0;
  }
}
.coming-soon .coming-soon-shape {
  width: auto;
  height: 100px;
  display: block;
  position: absolute;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .coming-soon .coming-soon-shape {
    transform: none;
    height: 100%;
  }
}
.coming-soon .coming-soon-shape-1 {
  transform-origin: right;
  left: 0;
  top: 0;
}
.coming-soon .coming-soon-shape-2 {
  transform-origin: left;
  right: 0;
  bottom: 0;
}
.coming-soon .coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coming-soon .heading-img {
  max-width: 300px;
}
@media (min-width: 768px) {
  .coming-soon .heading-img {
    max-width: 42%;
  }
}
.coming-soon .heading-img img {
  width: 100%;
  height: auto;
}
.coming-soon .coming-soon-button {
  margin-top: 20px;
  background-color: #46B17C;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  padding: 0.4em 1.4em;
  padding-bottom: 0.5em;
  display: block;
  font-size: 18px;
  line-height: 1;
  transition: 0.15s;
}
@media (min-width: 768px) {
  .coming-soon .coming-soon-button {
    margin-top: 30px;
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .coming-soon .coming-soon-button {
    margin-top: 40px;
    font-size: 24px;
  }
}
.coming-soon .coming-soon-button:hover {
  background-color: #FFFFFF;
  color: #1D4F4B;
}

#specifications {
  background-color: #F5DCB2;
}
#specifications .specifications-inner {
  padding: 60px 0;
}
#specifications .specifications-inner .heading-img {
  margin-bottom: 60px;
}
#specifications .specifications-inner .heading-img img,
#specifications .specifications-inner .heading-img svg {
  max-width: 200px;
}
@media (min-width: 992px) {
  #specifications .specifications-inner .heading-img img,
#specifications .specifications-inner .heading-img svg {
    max-width: none;
    width: 250px;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner .heading-img img,
#specifications .specifications-inner .heading-img svg {
    width: unset;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .heading-img {
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner .heading-img {
    margin-bottom: 100px;
  }
}
#specifications .specifications-inner .slider-wrap {
  margin-bottom: 60px;
}
#specifications .specifications-inner .slider-wrap .specifications-carousel .container {
  padding: 0px 0px;
}
@media (min-width: 992px) {
  #specifications .specifications-inner .slider-wrap .specifications-carousel .container {
    padding: 0px 30px;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .slider-wrap {
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner .slider-wrap {
    margin-bottom: 100px;
  }
}
#specifications .specifications-inner .about-wrap {
  margin-bottom: 60px;
}
#specifications .specifications-inner .about-wrap .about {
  width: 850px;
  margin: 0 auto;
  max-width: 100%;
}
#specifications .specifications-inner .about-wrap .about .heading {
  font-size: 36px;
  margin: 0px 0px 20px 0px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 768px) {
  #specifications .specifications-inner .about-wrap .about .heading {
    order: -1;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .about-wrap .about .heading {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .about-wrap {
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner .about-wrap {
    margin-bottom: 100px;
  }
}
#specifications .specifications-inner .accordion-wrap .accordion {
  border-top: 1px solid #000000;
}
#specifications .specifications-inner .accordion-wrap .accordion.active .heading span:last-child {
  transform: rotate(45deg);
}
#specifications .specifications-inner .accordion-wrap .accordion .heading {
  line-height: 1;
  cursor: pointer;
  font-size: 18px;
  padding: 15px 10px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
#specifications .specifications-inner .accordion-wrap .accordion .heading span:last-child {
  transition: transform 0.3s ease;
}
#specifications .specifications-inner .accordion-wrap .accordion .heading .row {
  margin: 0px 0px;
  justify-content: space-between;
}
@media (min-width: 992px) {
  #specifications .specifications-inner .accordion-wrap .accordion .heading {
    font-size: 22px;
    padding: 20px 20px;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner .accordion-wrap .accordion .heading {
    font-size: 28px;
  }
}
#specifications .specifications-inner .accordion-wrap .accordion .body {
  max-height: 0;
  overflow: hidden;
  letter-spacing: -0.28px;
  transition: max-height 0.4s ease;
}
#specifications .specifications-inner .accordion-wrap .accordion .body ul {
  list-style: disc;
  padding-left: 10px;
}
#specifications .specifications-inner .accordion-wrap .accordion .body ul li {
  margin-bottom: 0px;
}
#specifications .specifications-inner .accordion-wrap .accordion .body ul li:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  #specifications .specifications-inner .accordion-wrap .accordion .body ul {
    padding-left: 20px;
  }
}
#specifications .specifications-inner .accordion-wrap .accordion .body p:last-of-type {
  margin-bottom: 0px;
}
#specifications .specifications-inner .accordion-wrap .accordion .body .body-inner {
  padding: 0px 20px 25px 20px;
}
@media (min-width: 992px) {
  #specifications .specifications-inner .accordion-wrap .accordion .body {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .accordion-wrap .accordion {
    border-top: 2px solid #000000;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner .accordion-wrap {
    padding: 0px 30px;
  }
}
@media (min-width: 992px) {
  #specifications .specifications-inner {
    padding: 80px 0;
  }
}
@media (min-width: 1300px) {
  #specifications .specifications-inner {
    padding: 100px 0;
  }
}

#floorplans {
  padding: 60px 0;
}
#floorplans .floorplans-inner {
  width: 1100px;
  margin: 0 auto;
  max-width: 100%;
}
#floorplans .floorplans-inner .floorplans-top {
  margin: 0px 0px 40px 0px;
}
#floorplans .floorplans-inner .floorplans-top .heading-img {
  margin-bottom: 40px;
}
#floorplans .floorplans-inner .floorplans-top .heading-img img,
#floorplans .floorplans-inner .floorplans-top .heading-img svg {
  max-width: 200px;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-top .heading-img img,
#floorplans .floorplans-inner .floorplans-top .heading-img svg {
    max-width: none;
    width: 250px;
  }
}
@media (min-width: 1300px) {
  #floorplans .floorplans-inner .floorplans-top .heading-img img,
#floorplans .floorplans-inner .floorplans-top .heading-img svg {
    width: unset;
  }
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-top .heading-img {
    margin-bottom: 60px;
  }
}
#floorplans .floorplans-inner .floorplans-top .floorplans-filters {
  display: flex;
  margin: 0px 0px;
  flex-direction: row;
  justify-content: center;
}
#floorplans .floorplans-inner .floorplans-top .floorplans-filters .floorplans-filter {
  color: #000000;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  padding: 10px 10px;
  background-color: #FFFFFF;
}
#floorplans .floorplans-inner .floorplans-top .floorplans-filters .floorplans-filter.active {
  color: #FFFFFF;
  background-color: #000000;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-top {
    margin: 0px 0px 80px 0px;
  }
}
@media (min-width: 1300px) {
  #floorplans .floorplans-inner .floorplans-top {
    margin: 0px 0px 120px 0px;
  }
}
#floorplans .floorplans-inner .floorplans-main .swiper-carousel--floorplans {
  overflow: hidden;
}
#floorplans .floorplans-inner .floorplans-main .swiper-carousel--floorplans .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .slide-content--hidden {
  display: none;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .row {
  margin: 0px 0px;
  flex-direction: column-reverse;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .row .floorplan-item-col {
  width: 100%;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .row .floorplan-item-col {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .row {
    flex-direction: row;
  }
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .headings {
  font-size: 36px;
  margin: 0px 0px 30px 0px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  margin-top: 30px;
  color: #000000;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .headings .heading {
  font-weight: 700;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .headings .subheading {
  font-weight: 500;
}
@media (min-width: 768px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .headings {
    order: -1;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .headings {
    font-size: 45px;
  }
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row {
  line-height: 1;
  margin: 0px 0px;
  padding: 15px 0px;
  flex-direction: row;
  letter-spacing: -0.18px;
  border-bottom: 1px solid #000000;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row .row-col .balcony-after {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 1300px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row .row-col .balcony-after {
    font-size: 16px;
  }
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row .row-col.row-col-area {
  width: 48%;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row .row-col.row-col-dimensions-m {
  width: 24%;
  text-align: right;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table .row .row-col.row-col-dimensions-in {
  width: 28%;
  text-align: right;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table b,
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap .table strong {
  font-weight: 700;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap {
    padding-right: 30px;
  }
}
@media (min-width: 1300px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .table-wrap {
    padding-right: 0px;
  }
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap .note-wrap .note {
  margin: 30px 0px 0px 0px;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .details-wrap {
    width: 420px;
    margin-top: 0px;
  }
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .plan-wrap {
  display: flex;
  justify-content: center;
}
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .plan-wrap img,
#floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .plan-wrap svg {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-main .floorplans-carousel .floorplan-item .floorplan-item-inner .plan-wrap {
    justify-content: flex-end;
  }
}
#floorplans .floorplans-inner .floorplans-bottom {
  margin: 40px 0px 0px 0px;
}
#floorplans .floorplans-inner .floorplans-bottom .buttons {
  gap: 10px;
  display: flex;
  margin: 0px 0px;
  flex-direction: column;
  justify-content: center;
}
#floorplans .floorplans-inner .floorplans-bottom .buttons .button {
  padding: 0px 30px;
  margin: 0px 0px;
  font-size: 23px;
  height: 60px;
  width: auto;
}
#floorplans .floorplans-inner .floorplans-bottom .buttons .button.button--download img {
  height: 20px;
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-bottom .buttons .button {
    height: 45px;
  }
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-bottom .buttons {
    gap: 30px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  #floorplans .floorplans-inner .floorplans-bottom {
    margin: 80px 0px 0px 0px;
  }
}
@media (min-width: 1300px) {
  #floorplans .floorplans-inner .floorplans-bottom {
    margin: 100px 0px 0px 0px;
  }
}
@media (min-width: 992px) {
  #floorplans {
    padding: 80px 0;
  }
}
@media (min-width: 1300px) {
  #floorplans {
    padding: 100px 0;
  }
}

.neighbourhood {
  padding-top: 60px;
}
@media (min-width: 1300px) {
  .neighbourhood {
    padding-top: 120px;
  }
}
.neighbourhood .neighbourhood-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.neighbourhood .neighbourhood-heading h2 {
  font-size: 35px;
  line-height: 1;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  text-align: center;
  max-width: 200px;
}
@media (min-width: 768px) {
  .neighbourhood .neighbourhood-heading h2 {
    max-width: none;
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .neighbourhood .neighbourhood-heading h2 {
    font-size: 48px;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .neighbourhood-heading h2 {
    font-size: 58px;
  }
}
.neighbourhood .intro-text {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .neighbourhood .intro-text {
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .intro-text {
    width: 65%;
  }
}
.neighbourhood .neighbourhood-map-container {
  margin-top: 60px;
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .neighbourhood .neighbourhood-map-container {
    display: block;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .neighbourhood-map-container {
    margin-top: 90px;
  }
}
.neighbourhood .neighbourhood-map {
  position: relative;
}
.neighbourhood .map-img {
  width: 100%;
  height: auto;
  display: block;
}
.neighbourhood .map-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.neighbourhood .map-marker {
  display: inline-block;
  width: 2.7%;
  position: absolute;
  transform: translateX(10%);
}
.neighbourhood .map-marker.hidden {
  display: none;
}
.neighbourhood .map-marker:hover {
  z-index: 2;
}
.neighbourhood .map-marker:hover .marker-text {
  display: inline-block;
}
.neighbourhood .map-marker img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.neighbourhood .map-marker .marker-text {
  display: none;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.6em 1em;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}
@media (min-width: 1300px) {
  .neighbourhood .map-marker .marker-text {
    top: -8px;
  }
}
.neighbourhood .map-filters {
  background: #000000;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .neighbourhood .map-filters {
    position: absolute;
    bottom: 3%;
    right: 2%;
    padding: 20px 20px;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .map-filters {
    padding: 34px;
  }
}
.neighbourhood .map-filters .filter-grid {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (min-width: 768px) {
  .neighbourhood .map-filters .filter-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.neighbourhood .map-filters .filter-reset {
  display: block;
  position: absolute;
  right: 10px;
  top: 20px;
  width: 12px;
  height: auto;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .neighbourhood .map-filters .filter-reset {
    top: 20px;
    right: 20px;
    width: 16px;
  }
}
.neighbourhood .map-filters .grid-item {
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .neighbourhood .map-filters .grid-item {
    font-size: 12px;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .map-filters .grid-item {
    font-size: 14px;
  }
}
.neighbourhood .map-filters .grid-item.selected .checkbox {
  background-color: #FFFFFF;
}
.neighbourhood .map-filters .grid-item .checkbox {
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  border-radius: 0;
  height: 16px;
  width: 16px;
  min-width: 16px;
}
@media (min-width: 768px) {
  .neighbourhood .map-filters .grid-item .checkbox {
    width: 12px;
    height: 12px;
    min-width: 12px;
  }
}
@media (min-width: 1300px) {
  .neighbourhood .map-filters .grid-item .checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}
.neighbourhood .map-filters .grid-item .checkbox.active {
  background-color: #FFFFFF;
}

.area {
  color: #FFFFFF;
  padding: 60px 0;
  background-color: #000000;
}
@media (min-width: 992px) {
  .area {
    padding: 100px 0;
  }
}
@media (min-width: 1300px) {
  .area {
    padding: 130px 0;
  }
}
.area .area-chevron-mobile {
  width: 100%;
}
@media (min-width: 768px) {
  .area .area-chevron-mobile {
    display: none;
  }
}
.area .area-chevron-mobile img {
  width: 55%;
  height: auto;
  max-width: 200px;
}
.area .area-chevron-mobile--top {
  margin-bottom: 40px;
}
.area .area-chevron-mobile--bottom {
  text-align: right;
  margin-top: 40px;
}
.area .area-chevron-mobile--bottom img {
  transform: scaleX(-1);
}
.area .area-chevron {
  display: none;
}
@media (min-width: 768px) {
  .area .area-chevron {
    display: block;
    position: absolute;
    top: 50%;
    width: 25%;
    height: auto;
    max-width: 700px;
    transition: 1.2s;
  }
  .area .area-chevron--left {
    left: 0;
    transform: translateY(-50%) translateX(-100%);
  }
  .area .area-chevron--right {
    right: 0;
    transform: translateX(100%) scaleX(-1) translateY(-50%);
  }
}
.area .area-text-outer {
  position: relative;
  text-align: center;
}
.area .area-text-outer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area .area-text-outer.in-view .area-chevron--left {
  transform: translateY(-50%) translateX(-45%);
}
.area .area-text-outer.in-view .area-chevron--right {
  transform: translateX(45%) scaleX(-1) translateY(-50%);
}
@media (min-width: 768px) {
  .area .area-text {
    width: 68%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .area .area-text {
    width: 63%;
  }
}
.area .area-text p:not(:first-of-type) {
  margin-top: 16px;
}
.area .area-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .area .area-content {
    margin-top: 70px;
  }
}
@media (min-width: 1300px) {
  .area .area-content {
    margin-top: 130px;
  }
}
.area .area-buttons {
  width: 100%;
  max-width: 260px;
}
@media (min-width: 768px) {
  .area .area-buttons {
    display: flex;
    max-width: none;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .area .area-buttons .button {
    margin-top: 0;
    width: 180px;
    height: 40px;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .area .area-buttons .button {
    width: 210px;
    height: 58px;
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .area .area-buttons .button:not(:first-of-type) {
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .area .area-buttons .button:not(:first-of-type) {
    margin-left: 36px;
  }
}

.places {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .places {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .places {
    margin-top: 80px;
  }
}
@media (min-width: 1300px) {
  .places {
    margin-top: 90px;
  }
}
.places .places-filters-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .places .places-filters-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .places .places-filters-wrapper {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .places .places-filters-wrapper {
    font-size: 18px;
  }
}
.places .places-filters-wrapper h3 {
  font-weight: 700;
  text-align: left;
  padding: 0 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .places .places-filters-wrapper h3 {
    width: auto;
    padding: 0;
  }
}
.places .places-filters {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .places .places-filters {
    display: flex;
    margin: 0;
    margin-left: 10px;
    width: auto;
    flex-grow: 1;
  }
}
@media (min-width: 1300px) {
  .places .places-filters {
    margin-left: 20px;
  }
}
.places .places-filter {
  height: 42px;
  padding: 0 10px;
  width: 100%;
  border-top: 1px solid #000000;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .places .places-filter {
    border: none;
    text-align: center;
    padding: 0.5em 1em;
    justify-content: center;
    width: auto;
    margin-left: 10px;
    height: auto;
  }
}
.places .places-filter.active, .places .places-filter:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.places .places-pagination {
  display: none;
}
@media (min-width: 1300px) {
  .places .places-pagination {
    display: block;
  }
}
.places .places-pagination .current-slide-index {
  font-weight: 700;
}

.places-carousel {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .places-carousel {
    margin-top: 60px;
  }
}
@media (min-width: 1300px) {
  .places-carousel {
    margin-top: 90px;
  }
}

.zone {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .zone .zone-top-images {
    display: flex;
    justify-content: space-between;
  }
}
.zone .zone-top-image {
  height: 280px;
  width: 100%;
  display: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .zone .zone-top-image {
    width: 48.5%;
  }
  .zone .zone-top-image:nth-of-type(2) {
    display: block;
  }
}
@media (min-width: 992px) {
  .zone .zone-top-image {
    width: 32%;
  }
  .zone .zone-top-image:nth-of-type(3) {
    display: block;
  }
}
@media (min-width: 1300px) {
  .zone .zone-top-image {
    width: 32.5%;
    height: 340px;
  }
}
@media (min-width: 1600px) {
  .zone .zone-top-image {
    height: 400px;
  }
}
.zone .zone-top-image:nth-of-type(1) {
  display: block;
}
.zone .zone-travel {
  background-color: #b22f4f;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .zone .zone-travel {
    padding-bottom: 60px;
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .zone .zone-travel {
    padding-bottom: 80px;
    padding-top: 60px;
  }
}
@media (min-width: 1300px) {
  .zone .zone-travel {
    padding-bottom: 100px;
    padding-top: 80px;
  }
}
.zone .zone-travel-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .zone .zone-travel-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 95%;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1600px) {
  .zone .zone-travel-top {
    width: 90%;
  }
}
.zone .zone-travel-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .zone .zone-travel-intro {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .zone .zone-travel-intro {
    width: 43%;
  }
}
@media (min-width: 1300px) {
  .zone .zone-travel-intro {
    width: 47%;
  }
}
.zone .zone-travel-intro .heading-img img {
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .zone .zone-travel-intro .heading-img img {
    max-width: none;
  }
}
.zone .zone-travel-intro .intro-text {
  margin-top: 30px;
}
.zone .travel-filters {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 8px;
}
@media (min-width: 768px) {
  .zone .travel-filters {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
@media (min-width: 992px) {
  .zone .travel-filters {
    margin-top: 0;
  }
}
.zone .travel-filter {
  width: 32%;
  padding: 0.4em 0.5em;
  cursor: pointer;
}
@media (min-width: 768px) {
  .zone .travel-filter {
    width: 80px;
  }
}
@media (min-width: 1300px) {
  .zone .travel-filter {
    width: 90px;
  }
}
@media (min-width: 1600px) {
  .zone .travel-filter {
    width: 106px;
  }
}
.zone .travel-filter.active {
  background-color: #FFFFFF;
  color: #000000;
}
.zone .travel-filter.active img {
  filter: invert(1);
}
.zone .travel-filter img {
  display: inline-block;
}
.zone .travel-item {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .zone .travel-item {
    height: 200px;
    width: 25%;
  }
}
@media (min-width: 1300px) {
  .zone .travel-item {
    width: 20%;
  }
}
@media (min-width: 1300px) {
  .zone .travel-item:not(:first-of-type) {
    border-left: 1px solid #FFFFFF;
  }
}
.zone .travel-item .time {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 120px;
  font-weight: 300;
  line-height: 0.5em;
}
@media (min-width: 768px) {
  .zone .travel-item .time {
    font-size: 120px;
  }
}
@media (min-width: 1300px) {
  .zone .travel-item .time {
    font-size: 150px;
  }
}
.zone .travel-item .time .unit {
  display: inline-block;
  font-size: 0.18em;
  font-weight: 400;
  position: relative;
  bottom: 0.5em;
  margin-left: 0.1em;
}
.zone .travel-item .station {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  background-color: #FFFFFF;
  padding: 0.12em 0.7em;
}
@media (min-width: 768px) {
  .zone .travel-item .station {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .zone .travel-item .station {
    font-size: 20px;
  }
}
.zone .travel-item .distance {
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .zone .travel-item .distance {
    font-size: 15px;
  }
}
@media (min-width: 1300px) {
  .zone .travel-item .distance {
    font-size: 18px;
  }
}
.zone .zone-travel-carousel {
  display: none;
}
.zone .zone-travel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .zone .zone-travel-grid {
    margin-top: 60px;
  }
}
@media (min-width: 1300px) {
  .zone .zone-travel-grid {
    margin-top: 100px;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: space-between;
  }
}
.zone .zone-travel-grid .grid-item.hidden {
  display: none;
}
.zone .travel-note {
  margin-top: 70px;
  font-weight: 500;
  font-size: 8px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .zone .travel-note {
    max-width: none;
    font-size: 10px;
  }
}

.education {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .education {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .education {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .education {
    padding-top: 120px;
  }
}
.education .education-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.education .education-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.education .education-intro h2 img {
  width: 100%;
  max-width: 200px;
}
@media (min-width: 768px) {
  .education .education-intro h2 img {
    width: 30%;
    max-width: none;
  }
}
.education .education-intro .intro-text {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .education .education-intro .intro-text {
    width: 90%;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .education .education-intro .intro-text {
    width: 80%;
  }
}
@media (min-width: 1300px) {
  .education .education-intro .intro-text {
    width: 70%;
    margin-top: 40px;
  }
}
.education .education-grid-wrapper {
  width: 100%;
}
.education .education-grid-wrapper.expanded .grid-item {
  display: flex !important;
}
.education .education-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 40px;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .education .education-grid {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 992px) {
  .education .education-grid {
    width: 70%;
    margin-top: 100px;
    row-gap: 60px;
  }
}
@media (min-width: 1300px) {
  .education .education-grid {
    margin-top: 120px;
    row-gap: 80px;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.education .education-grid .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: calc(50% - 20px);
}
@media (min-width: 992px) {
  .education .education-grid .grid-item {
    width: calc((100% - 80px) / 3);
  }
  .education .education-grid .grid-item:not(:nth-last-of-type(n + 7)) {
    display: none;
  }
}
@media (min-width: 1300px) {
  .education .education-grid .grid-item {
    width: calc((100% - 120px) / 3);
  }
}
.education .education-grid .grid-item:not(:nth-last-of-type(n + 6)) {
  display: none;
}
.education .education-grid .grid-item:hover .education-overlay {
  opacity: 1;
  z-index: 2;
}
.education .education-grid .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  position: relative;
  max-height: 50px;
  max-width: 140px;
}
@media (min-width: 768px) {
  .education .education-grid .logo-wrapper {
    max-height: 60px;
    max-width: 150px;
  }
}
@media (min-width: 1300px) {
  .education .education-grid .logo-wrapper {
    max-width: 220px;
    max-height: 80px;
  }
}
.education .education-grid .logo-wrapper img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.education .education-grid .education-distance {
  margin-top: 20px;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 700;
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  padding: 0.5em 1em 0.7em;
  line-height: 1.1;
  font-size: 1em;
}
.education .education-grid .education-distance span {
  display: block;
}
.education .education-grid .education-distance span.break {
  width: 15px;
  display: none;
  text-align: center;
}
@media (min-width: 1300px) {
  .education .education-grid .education-distance span.break {
    display: inline-block;
  }
}
.education .education-grid .education-distance span img,
.education .education-grid .education-distance span svg {
  width: auto;
  height: 14px;
  max-width: 25px;
  margin-right: 5px;
}
@media (min-width: 992px) {
  .education .education-grid .education-distance span {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .education .education-grid .education-distance {
    font-size: 1.1em;
  }
}
@media (min-width: 1300px) {
  .education .education-grid .education-distance {
    margin-top: 30px;
  }
}
.education .education-grid .education-overlay {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -3;
  transition: opacity 0.2s;
}

.contact-banner {
  background-color: #000000;
  color: #FFFFFF;
}
.contact-banner .banner-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .contact-banner .banner-content-wrapper {
    padding-top: 11.1111111111rem;
    padding-bottom: 5.5555555556rem;
  }
}
.contact-banner .banner-content {
  position: relative;
  text-align: center;
  width: 100%;
}
.contact-banner .banner-chevron {
  position: absolute;
  filter: invert(1);
  bottom: 5%;
  right: 86%;
  height: 32%;
  width: auto;
  transform: translateX(-200%);
  transition: 1.4s;
}
@media (min-width: 768px) {
  .contact-banner .banner-chevron {
    right: 55%;
    bottom: 10%;
    transform: translateX(-350%);
  }
}
.contact-banner .banner-heading-group {
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  .contact-banner .banner-heading-group {
    width: 63%;
  }
}
.contact-banner h1 {
  width: 100%;
  max-width: 280px;
  display: inline-block;
}
@media (min-width: 768px) {
  .contact-banner h1 {
    width: 100%;
    max-width: none;
  }
}
.contact-banner h1 img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .contact-banner h1 img.mobile {
    display: none;
  }
}
.contact-banner h1 img.desktop {
  display: none;
}
@media (min-width: 768px) {
  .contact-banner h1 img.desktop {
    display: block;
  }
}
.contact-banner .banner-contact {
  text-align: center;
  display: block;
  margin-top: 36px;
  font-size: 14px;
}
.contact-banner .banner-contact--mobile {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .contact-banner .banner-contact--mobile {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .contact-banner .banner-contact--mobile {
    display: none;
  }
}
.contact-banner .banner-contact--desktop {
  display: none;
}
@media (min-width: 992px) {
  .contact-banner .banner-contact--desktop {
    display: block;
    position: absolute;
    text-align: left;
    right: 0;
    left: 62%;
    top: 6%;
    margin: 0;
    font-size: 11px;
  }
}
@media (min-width: 1300px) {
  .contact-banner .banner-contact--desktop {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .contact-banner .banner-contact--desktop {
    font-size: 17px;
  }
}
.contact-banner .banner-contact a {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contact-banner .banner-contact a {
    font-weight: 300;
  }
  .contact-banner .banner-contact a:first-of-type {
    font-weight: 500;
  }
}
.contact-banner .banner-contact address {
  margin-top: 14px;
}
.contact-banner .banner-contact .address-open {
  margin-top: 10px;
}
.contact-banner .banner-content-details {
  display: none;
}
@media (min-width: 768px) {
  .contact-banner .banner-content-details {
    display: block;
    text-align: center;
    font-weight: 300;
    margin-top: 3.5em;
  }
}
@media (min-width: 1600px) {
  .contact-banner .banner-content-details {
    font-size: 20px;
  }
}
.contact-banner.in-view .banner-chevron {
  transform: translateX(0);
}

.contact-form {
  padding-bottom: 60px;
  background-color: #000000;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contact-form {
    padding-top: 2.2222222222rem;
  }
}
@media (min-width: 1300px) {
  .contact-form {
    padding-bottom: 130px;
  }
}
.contact-form .contact-form-intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form .contact-form-intro .in-the-loop {
  width: 80%;
  height: auto;
  display: block;
  max-width: 300px;
}
@media (min-width: 768px) {
  .contact-form .contact-form-intro .in-the-loop {
    width: 35%;
    max-width: none;
  }
}
.contact-form .contact-form-intro h2 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
}
@media (min-width: 992px) {
  .contact-form .contact-form-intro h2 {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .contact-form .contact-form-intro h2 {
    font-size: 44px;
  }
}
.contact-form .contact-form-intro .intro-text {
  margin-top: 10px;
  max-width: 600px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contact-form .contact-form-intro .intro-text {
    width: 60%;
    margin-top: 20px;
  }
}
.contact-form .contact-form-wrapper {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper {
    margin-top: 40px;
  }
}
@media (min-width: 1300px) {
  .contact-form .contact-form-wrapper {
    margin-top: 70px;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-form-title {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont form .nf-form-fields-required {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont form .nf-form-content {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.contact-form .contact-form-wrapper .nf-form-cont form .nf-form-content .nf-field-label {
  display: none;
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells {
    display: flex;
    justify-content: center;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell {
  padding: 0;
  width: 100% !important;
}
.contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) nf-field:nth-of-type(2) {
  display: none;
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(1) {
    flex-basis: 100px;
    flex-grow: 1;
  }
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(1) nf-field:not(:last-of-type) .nf-field-container {
    margin-bottom: 35px;
  }
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) {
    width: 640px !important;
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (min-width: 1300px) {
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) {
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) nf-field:not(:last-of-type) .nf-field-container {
    margin-bottom: 20px;
  }
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) nf-field:nth-of-type(2) .nf-field-container {
    margin-bottom: 30px;
  }
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) nf-field:nth-of-type(6) {
    margin-top: 20px;
    display: inline-block;
  }
  .contact-form .contact-form-wrapper .nf-form-cont nf-cells > .nf-cell:nth-of-type(2) nf-field:last-of-type {
    margin-top: 20px;
    display: inline-block;
    width: calc(100% - 316px);
    float: right;
  }
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont .nf-field-9-container {
    margin-bottom: 0;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-after-field {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-form-errors {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-field-element::after {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-fail .nf-field-element input,
.contact-form .contact-form-wrapper .nf-form-cont .nf-fail .nf-field-element select {
  border-bottom: 1px solid red !important;
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-fail .nf-field-label label::after {
  border: 1px solid red !important;
}
.contact-form .contact-form-wrapper .nf-form-cont .nf-response-msg {
  text-align: center;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container {
  margin-bottom: 10px;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap {
  flex-wrap: wrap;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label {
  display: flex;
  margin-top: 16px;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label label {
  font-size: 11px;
  font-weight: 300;
  width: 240px;
  line-height: 1.6;
  margin-left: 0;
  padding-left: 40px;
}
@media (min-width: 768px) {
  .contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label label {
    width: 280px;
  }
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label label {
    width: auto;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label label::after {
  background: transparent;
  border-color: #FFFFFF;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-label label::before {
  left: 3px;
  top: 0;
  bottom: auto;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-description {
  order: -1;
  width: 100%;
  font-size: 11px;
  font-weight: 300;
  text-align: justify;
}
@media (min-width: 768px) {
  .contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-description {
    margin-right: 0;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .nf-field-description a {
  color: #000000;
  text-decoration: underline;
}
.contact-form .contact-form-wrapper .nf-form-cont .checkbox-container .checkbox-wrap .ninja-forms-req-symbol {
  display: none;
}
.contact-form .contact-form-wrapper .nf-form-cont input[type=text],
.contact-form .contact-form-wrapper .nf-form-cont input[type=email],
.contact-form .contact-form-wrapper .nf-form-cont input[type=tel] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF !important;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-family: neue-haas-unica, sans-serif;
  height: auto;
  outline: none;
  padding-left: 4px;
}
.contact-form .contact-form-wrapper .nf-form-cont input[type=text]::-moz-placeholder, .contact-form .contact-form-wrapper .nf-form-cont input[type=email]::-moz-placeholder, .contact-form .contact-form-wrapper .nf-form-cont input[type=tel]::-moz-placeholder {
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont input[type=text]::placeholder,
.contact-form .contact-form-wrapper .nf-form-cont input[type=email]::placeholder,
.contact-form .contact-form-wrapper .nf-form-cont input[type=tel]::placeholder {
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont input[type=text] .selected,
.contact-form .contact-form-wrapper .nf-form-cont input[type=email] .selected,
.contact-form .contact-form-wrapper .nf-form-cont input[type=tel] .selected {
  background: transparent;
}
.contact-form .contact-form-wrapper .nf-form-cont select {
  background: transparent !important;
  border: none;
  outline: none;
  border-bottom: 1px solid #FFFFFF !important;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-family: neue-haas-unica, sans-serif;
  height: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 4px;
}
.contact-form .contact-form-wrapper .nf-form-cont select::-moz-placeholder {
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont select::placeholder {
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont select option {
  background-color: #000000 !important;
}
.contact-form .contact-form-wrapper .nf-form-cont select optionoption[selected=selected] {
  background: transparent !important;
}
.contact-form .contact-form-wrapper .nf-form-cont div[for=nf-field-8],
.contact-form .contact-form-wrapper .nf-form-cont div[for=nf-field-9] {
  border: none;
  border-bottom: 1px solid #FFFFFF;
  background: transparent !important;
}
.contact-form .contact-form-wrapper .nf-form-cont .textarea-container .nf-field-label {
  display: block !important;
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont .textarea-container .nf-field-label {
    display: none !important;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .textarea-container .nf-field-label label {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding-left: 4px;
}
.contact-form .contact-form-wrapper .nf-form-cont .textarea-container textarea {
  resize: none;
  background: transparent;
  border: 1px solid #FFFFFF !important;
  color: #FFFFFF;
  font-size: 14px;
  font-family: neue-haas-unica, sans-serif;
  padding: 8px;
}
.contact-form .contact-form-wrapper .nf-form-cont .textarea-container textarea::-moz-placeholder {
  display: none;
  color: #FFFFFF;
}
.contact-form .contact-form-wrapper .nf-form-cont .textarea-container textarea::placeholder {
  display: none;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont .textarea-container textarea {
    height: 180px;
  }
}
@media (min-width: 992px) {
  .contact-form .contact-form-wrapper .nf-form-cont .textarea-container {
    margin-bottom: 0;
  }
}
.contact-form .contact-form-wrapper .nf-form-cont .form-img {
  width: 100% !important;
  height: auto;
  display: block;
}
.contact-form .contact-form-wrapper .nf-form-cont .submit-container {
  margin-bottom: 0;
}
.contact-form .contact-form-wrapper .nf-form-cont .submit-container input {
  width: 100%;
  text-transform: uppercase;
  font-family: neue-haas-unica, sans-serif;
  line-height: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
}
.contact-form .contact-form-wrapper .nf-form-cont .submit-container input:hover {
  background: #DBDBDB;
}

.contact-details {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .contact-details {
    padding: 4.4444444444rem;
  }
}
.contact-details .contact-details-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .contact-details .contact-details-content {
    font-size: 1.2222222222rem;
  }
}
.contact-details a {
  color: #000000;
}
.contact-details .address-bold {
  font-weight: 500;
}

.contact-map .map-wrapper .map {
  width: 100%;
  height: 80vh;
  max-height: 500px;
}
@media (min-width: 768px) {
  .contact-map .map-wrapper .map {
    max-height: 400px;
  }
}
@media (min-width: 992px) {
  .contact-map .map-wrapper .map {
    max-height: 450px;
  }
}
@media (min-width: 1300px) {
  .contact-map .map-wrapper .map {
    max-height: 500px;
  }
}
@media (min-width: 1600px) {
  .contact-map .map-wrapper .map {
    max-height: 550px;
  }
}

.community {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .community {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.community .community-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .community .community-cols {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .community .community-cols:nth-of-type(2n) {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 768px) {
  .community .community-cols:nth-of-type(2n) .community-content-col {
    order: -1;
  }
}
.community .community-img-col {
  height: 200px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .community .community-img-col {
    width: 53%;
    height: 300px;
  }
}
@media (min-width: 1300px) {
  .community .community-img-col {
    height: 420px;
  }
}
@media (min-width: 1600px) {
  .community .community-img-col {
    height: 490px;
  }
}
.community .community-content-col {
  padding: 34px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .community .community-content-col {
    width: 47%;
  }
}
.community .community-content-col h2 {
  text-transform: uppercase;
  line-height: 0.8;
}
.community .community-content-col h2.events {
  font-size: 60px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
}
@media (min-width: 768px) {
  .community .community-content-col h2.events {
    font-size: 4.4444444444rem;
  }
}
.community .community-content-col h2.news {
  font-size: 70px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 200;
}
@media (min-width: 768px) {
  .community .community-content-col h2.news {
    font-size: 4.4444444444rem;
  }
}
.community .community-content-col .intro {
  max-width: 240px;
  margin-top: 20px;
}
@media (min-width: 1600px) {
  .community .community-content-col .intro {
    max-width: none;
  }
}
.community .community-v2-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
@media (min-width: 1300px) {
  .community .community-v2-content {
    gap: 40px;
  }
}
.community .community-v2-content .link-box {
  width: 100%;
  height: 380px;
  padding: 30px;
  position: relative;
  display: block;
}
@media (min-width: 768px) {
  .community .community-v2-content .link-box {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 992px) {
  .community .community-v2-content .link-box {
    height: 420px;
  }
}
@media (min-width: 1300px) {
  .community .community-v2-content .link-box {
    height: 460px;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1600px) {
  .community .community-v2-content .link-box {
    height: 500px;
  }
}
.community .community-v2-content .link-box:hover .button-events--white {
  background-color: #FFFFFF;
  color: #000000;
}
.community .community-v2-content .link-box:hover .button-events--white img {
  filter: invert(0);
}
.community .community-v2-content .box-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.community .community-v2-content .box-img::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.community .community-v2-content .box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.community .community-v2-content .box-title {
  text-transform: uppercase;
  line-height: 0.8;
}
.community .community-v2-content .box-title--events {
  font-size: 60px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
}
@media (min-width: 768px) {
  .community .community-v2-content .box-title--events {
    font-size: 4.4444444444rem;
  }
}
.community .community-v2-content .box-title--news {
  font-size: 70px;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 200;
}
@media (min-width: 768px) {
  .community .community-v2-content .box-title--news {
    font-size: 4.4444444444rem;
  }
}
.community .community-v2-content .box-intro {
  max-width: 240px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .community .community-v2-content .box-intro {
    min-height: 27px;
  }
}
@media (min-width: 1600px) {
  .community .community-v2-content .box-intro {
    max-width: none;
  }
}

.button-events {
  margin-top: 26px;
  display: block;
  background-color: transparent;
  outline: 1px solid #000000;
  outline-offset: -1px;
  color: #000000;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 700;
  min-width: 230px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
}
@media (min-width: 768px) {
  .button-events {
    font-size: 1.1111111111rem;
    height: 2.7777777778rem;
    min-width: 12.4444444444rem;
    margin-top: 1.6666666667rem;
  }
}
.button-events:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.button-events:hover img {
  filter: invert(1);
}
.button-events img {
  display: block;
  margin-left: 10px;
  height: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .button-events img {
    height: 1.2222222222rem;
  }
}
.button-events--white {
  outline: 1px solid #FFFFFF;
  outline-offset: -1px;
  color: #FFFFFF;
}
.button-events--white img {
  filter: invert(1);
}
.button-events--white:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.button-events--white:hover img {
  filter: invert(0);
}

.community-stories {
  background-color: #C08BBD;
}

.community-aberfeldy-stories {
  background-color: #C08BBD;
  padding: 210px 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories {
    padding: 90px 0;
  }
}
@media (min-width: 1300px) {
  .community-aberfeldy-stories {
    padding: 120px 0;
    text-align: center;
  }
}
.community-aberfeldy-stories .aberfeldy-stories-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.community-aberfeldy-stories .aberfeldy-stories-content h2 {
  width: 90%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .aberfeldy-stories-content h2 {
    width: 45%;
    max-width: none;
  }
}
.community-aberfeldy-stories .aberfeldy-stories-content .stories-heading {
  width: 100%;
  height: auto;
  margin-top: 1em;
}
.community-aberfeldy-stories .aberfeldy-stories-content .stories-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .aberfeldy-stories-content .stories-heading--desktop {
    display: block;
  }
}
.community-aberfeldy-stories .aberfeldy-stories-content .stories-heading--mobile {
  display: block;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .aberfeldy-stories-content .stories-heading--mobile {
    display: none;
  }
}
.community-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
  font-weight: 300;
  font-family: acumin-pro, sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  margin-top: 0.6em;
  text-align: center;
}
@media (min-width: 1300px) {
  .community-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
    font-size: 20px;
  }
}
.community-aberfeldy-stories .aberfeldy-stories-content .button {
  margin-top: 2em;
  font-size: 18px;
  padding: 0.5em 1.8em;
}
@media (min-width: 1300px) {
  .community-aberfeldy-stories .aberfeldy-stories-content .button {
    font-size: 20px;
  }
}
.community-aberfeldy-stories .stories-img {
  display: block;
  position: absolute;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img {
    width: auto !important;
    height: 40% !important;
  }
}
@media (min-width: 992px) {
  .community-aberfeldy-stories .stories-img {
    width: auto !important;
    height: 45% !important;
  }
}
.community-aberfeldy-stories .stories-img--josh {
  display: none;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--josh {
    bottom: -5%;
    left: 15%;
    height: 40%;
    transform: translateY(30%);
    display: block;
  }
}
.community-aberfeldy-stories .stories-img--alaina {
  display: none;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--alaina {
    display: block;
    right: 1%;
    top: 0;
    transform: translateY(-10%);
  }
}
.community-aberfeldy-stories .stories-img--laurrice {
  top: 0;
  left: 0;
  height: 150px;
  width: auto;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--laurrice {
    top: 0;
    left: 0;
  }
}
.community-aberfeldy-stories .stories-img--shuilly {
  bottom: -40px;
  right: -50px;
  height: 210px;
  width: auto;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--shuilly {
    right: 12%;
    bottom: 0;
    transform: translateY(30%);
  }
}
.community-aberfeldy-stories .stories-img--suriya {
  bottom: -60px;
  left: -20px;
  height: 200px;
  width: auto;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--suriya {
    display: none;
  }
}
.community-aberfeldy-stories .stories-img--halima {
  top: 0;
  right: -20px;
  height: 170px;
  width: auto;
}
@media (min-width: 768px) {
  .community-aberfeldy-stories .stories-img--halima {
    display: none;
  }
}

.newsletters {
  background: #EDEDED;
  padding: 50px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsletters {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .newsletters {
    padding: 100px 0;
  }
}
@media (min-width: 1300px) {
  .newsletters {
    padding: 120px 0;
  }
}
.newsletters .newsletters-intro {
  text-align: center;
}
.newsletters h2 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .newsletters h2 {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .newsletters h2 {
    font-size: 68px;
  }
}
.newsletters .subtext {
  font-weight: 300;
}
.newsletters .newsletter-items {
  max-width: 100%;
  margin-top: 40px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .newsletters .newsletter-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .newsletters .newsletter-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
}
@media (min-width: 1300px) {
  .newsletters .newsletter-items {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1600px) {
  .newsletters .newsletter-items {
    margin-top: 60px;
  }
}
.newsletters .newsletter-item {
  width: 100%;
  cursor: pointer;
  color: inherit;
}
.newsletters .newsletter-item:hover .newsletter-arrow {
  transform: translateX(10%);
}
.newsletters .image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.newsletters .image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.newsletters .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2em;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 768px) {
  .newsletters .item-bottom {
    margin-top: 0.5em;
    font-size: 15px;
  }
}
.newsletters .newsletter-arrow {
  display: block;
  height: 0.9em;
  transition: 0.3s;
}
.newsletters .newsletter-modal {
  border: none;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  height: auto;
  max-height: 100%;
  flex-direction: column;
  margin: 0;
}
.newsletters .newsletter-modal[open] {
  display: flex;
}
.newsletters .modal-top {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.newsletters .modal-main {
  width: 600px;
  flex-grow: 1;
}
.newsletters .modal-main iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.stories-intro-section--events .stories-intro-content {
  border-bottom: none;
}

.events {
  background-color: #FFFFFF;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .events {
    padding-bottom: 0;
  }
}
.events .filters-section {
  background-color: #F7F7F7;
  padding: 40px 0;
  overflow-x: hidden;
}
.events .filters-wrapper {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.events .filters-wrapper::-webkit-scrollbar {
  display: none;
}
.events .filters {
  display: flex;
  padding: 0 30px;
  float: left;
  align-items: center;
}
@media (min-width: 768px) {
  .events .filters {
    padding: 0;
    justify-content: center;
    width: 100%;
  }
}
.events .filters img {
  display: block;
  margin-right: 14px;
  transform: scaleX(-1);
  height: 1.3em;
}
@media (min-width: 768px) {
  .events .filters img {
    display: none;
  }
}
.events .filter {
  padding: 0.5em 1em;
  flex: 1 1 auto;
  font-size: 20px;
  display: block;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .events .filter {
    font-size: 13.5px;
    flex-grow: 0;
  }
}
@media (min-width: 992px) {
  .events .filter {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .events .filter {
    font-size: 18px;
  }
}
.events .filter:not(:first-of-type) {
  margin-left: 10px;
}
@media (min-width: 768px) {
  .events .filter:not(:first-of-type) {
    margin-left: 4px;
  }
}
@media (min-width: 992px) {
  .events .filter:not(:first-of-type) {
    margin-left: 8px;
  }
}
.events .filter.active,
.events .filter :hover {
  background-color: #000000;
  color: #FFFFFF;
}

.events-intro {
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .events-intro {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.events-intro.hidden {
  display: none;
}
.events-intro h2 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
}
.events-intro .events-intro-text {
  font-size: 18px;
  margin-top: 20px;
  max-width: 250px;
}
@media (min-width: 768px) {
  .events-intro .events-intro-text {
    max-width: none;
  }
}

.family-intro {
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
  font-family: acumin-pro-condensed, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .family-intro {
    font-size: 32px;
  }
}
@media (min-width: 1300px) {
  .family-intro {
    font-size: 36px;
  }
}
.family-intro.hidden {
  display: none !important;
}

.events-main {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .events-main {
    padding-bottom: 60px;
  }
}
.events-main .events-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .events-main .events-wrapper--long {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .events-main .events-wrapper--long {
    gap: 10px;
  }
}
@media (min-width: 1300px) {
  .events-main .events-wrapper--long {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .events-main .events-wrapper--long .event {
    width: calc((100% - 10px) / 2);
  }
}
@media (min-width: 992px) {
  .events-main .events-wrapper--long .event {
    width: calc((100% - 20px) / 3);
  }
}
@media (min-width: 1300px) {
  .events-main .events-wrapper--long .event {
    width: calc((100% - 60px) / 3);
  }
}
.events-main .empty {
  justify-content: center;
  text-align: center;
}
.events-main .event {
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .events-main .event {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide {
    width: 100% !important;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-col-1 {
    min-height: 200px;
    height: auto;
    flex-basis: calc(50% - 5px);
    flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .events-main .event--wide .event-col-1 {
    flex-basis: 55%;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-img {
    height: 100%;
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  .events-main .event--wide .event-img {
    min-height: 340px;
  }
}
@media (min-width: 1300px) {
  .events-main .event--wide .event-img {
    min-height: 380px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-col-2 {
    padding: 0;
    flex-grow: 1;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-col-2-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .events-main .event--wide .event-col-2-container {
    padding-left: 50px;
  }
}
@media (min-width: 1300px) {
  .events-main .event--wide .event-col-2-container {
    padding-left: 70px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .col-2-bottom {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-category {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-title {
    font-size: 56px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-buttons {
    margin-top: 24px;
    gap: 10px;
  }
}
@media (min-width: 1300px) {
  .events-main .event--wide .event-buttons {
    display: flex;
    width: auto;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-buttons .button--black {
    justify-content: center;
    width: 210px;
  }
}
@media (min-width: 1300px) {
  .events-main .event--wide .event-buttons .button--black {
    margin-top: 0 !important;
    width: 190px;
  }
}
@media (min-width: 1600px) {
  .events-main .event--wide .event-buttons .button--black {
    width: 210px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-buttons .button--black img {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-details {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-description {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .events-main .event--wide .event-italics {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 14px;
    max-width: none;
  }
}
.events-main .event--wide .event-free--small {
  display: none;
}
.events-main .event--wide .event-free--big {
  display: flex;
}
.events-main .event-col-1 {
  height: 180px;
  display: flex;
  flex-direction: column;
}
.events-main .event-img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.events-main .event-col-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .events-main .event-col-2 {
    text-align: left;
  }
}
.events-main .col-2-top {
  width: 100%;
}
.events-main .event-col-2-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .events-main .event-col-2-container {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .events-main .event-col-2-container {
    padding: 30px;
  }
}
.events-main .event-category {
  font-size: 14px;
  font-weight: 700;
}
.events-main .event-free {
  width: 100%;
  font-size: 22px;
  padding: 0.5em 1em;
  background-color: #000000;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-main .event-free--big {
  display: none;
}
.events-main .event-free span {
  background-color: #656565;
  height: 1px;
  flex: 1;
  display: block;
}
.events-main .event-free span:nth-of-type(1) {
  margin-right: 1em;
}
.events-main .event-free span:nth-of-type(2) {
  margin-left: 1em;
}
.events-main .event-buttons {
  margin-top: 40px;
  width: 180px;
}
@media (min-width: 768px) {
  .events-main .event-buttons {
    padding: 0;
    margin-top: 20px;
  }
}
.events-main .event-buttons .button--black {
  width: 100%;
  justify-content: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0.8em 1em;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #000000;
  transition: 0.2s;
}
.events-main .event-buttons .button--black:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.events-main .event-buttons .button--black:hover img {
  filter: invert(0);
}
.events-main .event-buttons .button--black img {
  margin-left: 20px;
  filter: invert(1);
  display: block;
  height: 1em;
  width: auto;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .events-main .event-buttons .call--mobile {
    display: none;
  }
}
.events-main .event-buttons .call--desktop {
  display: none;
}
@media (min-width: 768px) {
  .events-main .event-buttons .call--desktop {
    display: flex;
  }
}
.events-main .event-title {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 44px;
  text-transform: uppercase;
  line-height: 0.8;
  margin-top: 14px;
  width: 100%;
}
@media (min-width: 768px) {
  .events-main .event-title {
    margin-top: 10px;
  }
}
.events-main .event-italics {
  font-size: 15px;
  font-style: italic;
  margin-top: 10px;
  font-weight: 300;
  display: inline-block;
  max-width: 90%;
}
.events-main .event-description {
  font-weight: 300;
  font-size: 15px;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .events-main .event-description {
    margin-top: 10px;
  }
}
.events-main .subtext {
  font-size: 0.7em;
  line-height: 1;
}
.events-main .event-details {
  font-weight: 300;
  font-size: 15px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .events-main .event-details {
    margin-top: 0;
  }
}

.col-2-bottom {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .col-2-bottom {
    align-items: flex-start;
    text-align: left;
    align-self: flex-end;
    margin-top: 20px;
  }
}

.events-back-section.in-view .back-text {
  opacity: 1;
  transform: translateY(0);
}
.events-back-section.in-view img {
  transform: translateX(0) !important;
}
@media (min-width: 768px) {
  .events-back-section.in-view .events-back {
    transform: translateX(0);
  }
}

.events-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  margin-top: 100px;
  color: #000000;
}
@media (min-width: 768px) {
  .events-back {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    transform: translateX(150%);
    transition: 1.5s;
  }
}
.events-back .back-text {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  line-height: 0.8;
  font-size: 44px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0s;
}
@media (min-width: 768px) {
  .events-back .back-text {
    margin: 0 5%;
    line-height: 1;
    padding-bottom: 0.2em;
    font-size: 36px;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .events-back .back-text {
    font-size: 44px;
  }
}
.events-back img {
  display: block;
  margin-top: 40px;
  width: 106%;
  height: auto;
  max-width: 400px;
  transform: translateX(150%);
  transition: 1.2s 0.3s;
}
@media (min-width: 768px) {
  .events-back img {
    flex: 1;
    margin: 0;
    width: 0;
    transform: translateX(0);
  }
}
.events-back img:first-of-type {
  display: none;
}
@media (min-width: 768px) {
  .events-back img:first-of-type {
    display: block;
  }
}
@media (min-width: 768px) {
  .events-back img:nth-of-type(2) {
    display: block;
  }
}

.page-wrapper.events--stories .events-aberfeldy-stories {
  display: block;
}

.events-aberfeldy-stories {
  display: none;
}
@media (min-width: 768px) {
  .events-aberfeldy-stories {
    background-color: #C08BBD;
    display: none;
    padding: 120px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .events-aberfeldy-stories {
    padding: 160px 0;
  }
}
@media (min-width: 1300px) {
  .events-aberfeldy-stories {
    padding: 200px 0;
  }
}
.events-aberfeldy-stories .aberfeldy-stories-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.events-aberfeldy-stories .aberfeldy-stories-content h2 {
  width: 50%;
}
.events-aberfeldy-stories .aberfeldy-stories-content .stories-heading {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1em;
}
.events-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
  font-weight: 300;
  font-family: acumin-pro, sans-serif;
  color: #FFFFFF;
  font-size: 20px;
  margin-top: 0.6em;
}
@media (min-width: 992px) {
  .events-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .events-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .events-aberfeldy-stories .aberfeldy-stories-content .stories-intro {
    font-size: 32px;
  }
}
.events-aberfeldy-stories .aberfeldy-stories-content .button {
  margin-top: 2em;
  font-size: 18px;
  padding: 0.5em 1.8em;
}
@media (min-width: 1300px) {
  .events-aberfeldy-stories .aberfeldy-stories-content .button {
    font-size: 20px;
  }
}
.events-aberfeldy-stories .stories-img {
  display: block;
  position: absolute;
  width: auto;
  height: 40%;
}
.events-aberfeldy-stories .stories-img--josh {
  bottom: 0;
  left: 15%;
  height: 40%;
  transform: translateY(30%);
}
.events-aberfeldy-stories .stories-img--alaina {
  right: 6%;
  top: 0;
  transform: translateY(-10%);
}
.events-aberfeldy-stories .stories-img--laurrice {
  top: 0;
  left: 4%;
}
.events-aberfeldy-stories .stories-img--shuilly {
  right: 12%;
  bottom: 0;
  transform: translateY(30%);
}

.page-template-page-stories {
  background-color: #C08BBD;
}

.stories-intro-section {
  padding-top: 50px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .stories-intro-section {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .stories-intro-section {
    padding-top: 80px;
    padding-bottom: 130px;
    margin-top: 110px;
  }
}
@media (min-width: 1300px) {
  .stories-intro-section {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}
@media (min-width: 768px) {
  .stories-intro-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.stories-intro-section .stories-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 70px;
  border-bottom: 1px solid white;
}
@media (min-width: 768px) {
  .stories-intro-section .stories-intro-content {
    border: none;
    padding: 0;
  }
}
.stories-intro-section .stories-intro-content h1 {
  display: inline-block;
  font-family: acumin-pro, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0s;
}
@media (min-width: 992px) {
  .stories-intro-section .stories-intro-content h1 {
    font-size: 60px;
  }
}
@media (min-width: 1300px) {
  .stories-intro-section .stories-intro-content h1 {
    font-size: 70px;
  }
}
@media (min-width: 1600px) {
  .stories-intro-section .stories-intro-content h1 {
    font-size: 76px;
  }
}
.stories-intro-section .stories-intro-content .sub-heading {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-size: 24px;
  margin-top: 0.8em;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0.4s;
}
@media (min-width: 992px) {
  .stories-intro-section .stories-intro-content .sub-heading {
    font-size: 28px;
  }
}
.stories-intro-section .stories-intro-content .intro-text {
  margin-top: 30px;
  max-width: 400px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 0.8s;
}
@media (min-width: 768px) {
  .stories-intro-section .stories-intro-content .intro-text {
    max-width: 550px;
  }
}
@media (min-width: 992px) {
  .stories-intro-section .stories-intro-content .intro-text {
    margin-top: 40px;
    max-width: 660px;
  }
}
@media (min-width: 1600px) {
  .stories-intro-section .stories-intro-content .intro-text {
    max-width: 700px;
  }
}
.stories-intro-section .stories-intro-content .intro-text p:not(:first-of-type) {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .stories-intro-section .stories-intro-content .intro-text p:not(:first-of-type) {
    margin-top: 20px;
  }
}
.stories-intro-section .stories-intro-content .intro-text a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 500;
}
.stories-intro-section .stories-intro-content .button-wrapper {
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 1.2s;
}
.stories-intro-section .stories-intro-content .schedule-button {
  background-color: #FFFFFF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 40px;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .stories-intro-section .stories-intro-content .schedule-button {
    height: 44px;
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .stories-intro-section .stories-intro-content .schedule-button {
    height: 60px;
    font-size: 26px;
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .stories-intro-section .stories-intro-content .schedule-button {
    margin-top: 44px;
  }
}
.stories-intro-section .stories-intro-content .schedule-button:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.stories-intro-section.in-view h1,
.stories-intro-section.in-view .sub-heading,
.stories-intro-section.in-view .intro-text,
.stories-intro-section.in-view .button-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.stories-mobile {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}
@media (min-width: 768px) {
  .stories-mobile {
    display: none;
  }
}
.stories-mobile .stories-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
}
.stories-mobile .stories-content h2 {
  display: inline-block;
}
.stories-mobile .stories-content h2 .stories-heading {
  width: 210px;
  height: auto;
}
.stories-mobile .stories-content h2 .stories-heading--mobile {
  display: block;
}
@media (min-width: 768px) {
  .stories-mobile .stories-content h2 .stories-heading--mobile {
    display: none;
  }
}
.stories-mobile .stories-content h2 .stories-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .stories-mobile .stories-content h2 .stories-heading--desktop {
    display: block;
    width: 44%;
  }
}
.stories-mobile .stories-content h3 {
  margin-top: 20px;
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}
.stories-mobile .stories-content .text {
  color: #FFFFFF;
  text-align: center;
  margin-top: 36px;
  line-height: 1.6;
}
.stories-mobile .stories-content .text p:not(:first-of-type) {
  margin-top: 20px;
}
.stories-mobile .stories-content .tap-photos {
  margin-top: 26px;
  display: flex;
  align-items: center;
}
.stories-mobile .stories-content .tap-photos img {
  height: 32px;
  width: auto;
}
.stories-mobile .stories-content .tap-photos .tap-text {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  margin-left: 10px;
  line-height: 0;
  font-size: 16px;
}
.stories-mobile .stories-photos {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.stories-mobile .stories-photos.expanded .photo-outer {
  display: block !important;
}
.stories-mobile .stories-photos.in-view .stories-chevron {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
.stories-mobile .stories-photos .photo-outer {
  width: 80%;
  max-width: 300px;
  position: relative;
}
.stories-mobile .stories-photos .photo-outer:not(:first-of-type) {
  margin-top: 20px;
}
.stories-mobile .stories-photos .photo-outer:nth-of-type(2n) {
  align-self: flex-end;
}
.stories-mobile .stories-photos .photo-outer:nth-of-type(n + 5) {
  display: none;
}
.stories-mobile .stories-photos .photo-outer a {
  height: 0;
  overflow: hidden;
  padding-top: 114.2857142857%;
  position: relative;
  display: block;
}
.stories-mobile .stories-photos .photo-outer a .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.stories-mobile .stories-photos .photo-outer .stories-chevron {
  position: absolute;
  top: -8%;
  right: -14%;
  width: 22%;
  height: auto;
  transform: translateY(-100vh);
  transition: 1.5s;
  opacity: 0;
}
.stories-mobile .show-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
}
.stories-mobile .show-more-wrapper.hidden {
  display: none;
}
.stories-mobile .show-more-wrapper .show-more {
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 28px;
  padding-bottom: 8px;
}
.stories-mobile .show-more-wrapper span {
  height: 1px;
  display: block;
  background: #FFFFFF;
  flex: 1;
}
.stories-mobile .show-more-wrapper span:nth-of-type(1) {
  margin-right: 10px;
}
.stories-mobile .show-more-wrapper span:nth-of-type(2) {
  margin-left: 10px;
}
.stories-mobile .exhibition-details {
  margin-top: 60px;
  text-align: center;
  width: 230px;
  display: inline-block;
}
.stories-mobile .exhibition-details h3 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.1;
}
.stories-mobile .exhibition-details p {
  margin-top: 20px;
  color: #FFFFFF;
  line-height: 1.6;
}

.stories-desktop {
  display: none;
}
@media (min-width: 768px) {
  .stories-desktop {
    display: block;
    padding-bottom: 100px;
    padding-top: 90px;
  }
}
@media (min-width: 992px) {
  .stories-desktop {
    padding-bottom: 140px;
    padding-top: 130px;
  }
}
@media (min-width: 1600px) {
  .stories-desktop {
    padding-bottom: 180px;
  }
}
.stories-desktop .stories-outer {
  height: 0;
  position: relative;
  padding-top: 68.5714285714%;
}
.stories-desktop .stories-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.stories-desktop .stories-inner .stories-inner-content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stories-desktop .stories-inner .stories-inner-content h1 {
  display: block;
  text-align: center;
  width: 100%;
}
.stories-desktop .stories-inner .stories-inner-content h1 .stories-heading {
  width: 44%;
  display: inline-block;
  height: auto;
}
.stories-desktop .stories-inner .stories-inner-content h3 {
  font-weight: 300;
  font-family: acumin-pro, sans-serif;
  color: #FFFFFF;
  font-size: 20px;
}
@media (min-width: 992px) {
  .stories-desktop .stories-inner .stories-inner-content h3 {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .stories-desktop .stories-inner .stories-inner-content h3 {
    font-size: 28px;
    margin-top: 6px;
  }
}
@media (min-width: 1600px) {
  .stories-desktop .stories-inner .stories-inner-content h3 {
    font-size: 32px;
  }
}
.stories-desktop .stories-inner .stories-inner-content .hover {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1300px) {
  .stories-desktop .stories-inner .stories-inner-content .hover {
    margin-top: 26px;
  }
}
.stories-desktop .stories-inner .stories-inner-content .hover img {
  height: 20px;
}
@media (min-width: 992px) {
  .stories-desktop .stories-inner .stories-inner-content .hover img {
    height: 24px;
  }
}
@media (min-width: 1300px) {
  .stories-desktop .stories-inner .stories-inner-content .hover img {
    height: 28px;
  }
}
@media (min-width: 1600px) {
  .stories-desktop .stories-inner .stories-inner-content .hover img {
    height: 32px;
  }
}
.stories-desktop .stories-inner .stories-inner-content .hover .hover-text {
  font-weight: 300;
  font-family: acumin-pro, sans-serif;
  color: #FFFFFF;
  font-size: 14px;
  margin-left: 20px;
}
@media (min-width: 992px) {
  .stories-desktop .stories-inner .stories-inner-content .hover .hover-text {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .stories-desktop .stories-inner .stories-inner-content .hover .hover-text {
    font-size: 18px;
  }
}
.stories-desktop .stories-inner .stories-photos {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.stories-desktop .stories-inner .stories-photos .photo-outer {
  position: absolute;
  width: 14% !important;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(1) {
  width: 14.3%;
  left: 11.4%;
  top: 3.5%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(2) {
  width: 11.4%;
  left: 34.3%;
  top: 9%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(3) {
  width: 12.9%;
  left: 56.1%;
  top: 0;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(4) {
  width: 13.3%;
  left: 80.3%;
  top: 9.3%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(5) {
  width: 11.7%;
  left: 78.8%;
  top: 41%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(6) {
  width: 11.1%;
  left: 74.8%;
  top: 72.5%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(7) {
  width: 12.4%;
  left: 51.8%;
  top: 74%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(8) {
  width: 10.9%;
  left: 30.7%;
  top: 66.5%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(9) {
  width: 12.6%;
  left: 9.8%;
  top: 73.2%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer:nth-of-type(10) {
  width: 10.6%;
  left: 4.4%;
  top: 36.3%;
}
.stories-desktop .stories-inner .stories-photos .photo-outer a {
  height: 0;
  overflow: hidden;
  padding-top: 127.5%;
  position: relative;
  display: block;
  cursor: url("../../img/graphics/cursor-hover-small.svg") 16 16, auto;
}
@media (min-width: 1300px) {
  .stories-desktop .stories-inner .stories-photos .photo-outer a {
    cursor: url("../../img/graphics/cursor-hover.svg") 33 33, auto;
  }
}
.stories-desktop .stories-inner .stories-photos .photo-outer a:hover ::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.stories-desktop .stories-inner .stories-photos .photo-outer a .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.stories-desktop .stories-inner .stories-chevron {
  position: absolute;
  height: auto;
  width: 13.8%;
  left: 11%;
  top: 59.4%;
  z-index: -1;
}
.stories-desktop .stories-inner .stories-arrows-dot {
  position: absolute;
  height: auto;
  width: 6.1%;
  left: 87.4%;
  top: 31.9%;
}
.stories-desktop .stories-bottom.in-view .description {
  transform: translateY(0);
  opacity: 1;
}
.stories-desktop .stories-bottom.in-view .chevron-right {
  transform: rotate(180deg) translateX(-11%);
}
.stories-desktop .stories-bottom.in-view .chevron-left {
  transform: translateX(-11%);
}
.stories-desktop .stories-bottom.in-view h3,
.stories-desktop .stories-bottom.in-view .address {
  opacity: 1;
  transform: translateY(0);
}
.stories-desktop .stories-main-content {
  display: flex;
  justify-content: space-between;
  margin-top: 7.4285714286%;
}
.stories-desktop .stories-main-content .description {
  width: 50%;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .stories-desktop .stories-main-content .description {
    width: 42%;
    max-width: 610px;
    opacity: 0;
    transform: translateY(20px);
    transition: 1.4s 0.5s;
  }
}
.stories-desktop .stories-main-content .description p:not(:first-of-type) {
  margin-top: 20px;
}
.stories-desktop .stories-main-content img {
  width: 22%;
  height: auto;
  transition: 1s;
}
.stories-desktop .stories-main-content img.chevron-right {
  transform: rotate(180deg) translateX(-100%);
}
.stories-desktop .stories-main-content img.chevron-left {
  transform: translateX(-100%);
}
.stories-desktop .exhibition-details {
  margin-top: 5.4285714286%;
  text-align: center;
}
.stories-desktop .exhibition-details h3 {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: 1s 1s;
}
@media (min-width: 992px) {
  .stories-desktop .exhibition-details h3 {
    font-size: 34px;
  }
}
@media (min-width: 1600px) {
  .stories-desktop .exhibition-details h3 {
    font-size: 44px;
  }
}
.stories-desktop .exhibition-details .address {
  margin-top: 20px;
  color: #FFFFFF;
  font-family: acumin-pro, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: 1s 1.3s;
}

.story-single {
  padding-top: 60px;
  padding-bottom: 80px;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .story-single {
    margin-top: 110px;
  }
}
.story-single .story-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .story-single .story-content {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
}
.story-single .story-content .photo-outer {
  max-width: 400px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .story-single .story-content .photo-outer {
    width: 35%;
    max-width: none;
  }
}
.story-single .story-content .photo-outer .photo-inner {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 110.8333333333%;
  display: block;
}
@media (min-width: 768px) {
  .story-single .story-content .photo-outer .photo-inner {
    padding-top: 127.1794871795%;
  }
}
.story-single .story-content .photo-outer .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.story-single .story-content .photo-outer .story-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(40%);
  color: #FFFFFF;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 36px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .story-single .story-content .photo-outer .story-name {
    transform-origin: 0 100%;
    transform: rotate(-90deg) translateY(40%);
    left: 0;
    bottom: 10%;
    width: auto;
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .story-single .story-content .photo-outer .story-name {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .story-single .story-content .photo-outer .story-name {
    font-size: 47px;
  }
}
@media (min-width: 1600px) {
  .story-single .story-content .photo-outer .story-name {
    font-size: 61px;
  }
}
@media (min-width: 768px) {
  .story-single .story-content .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55%;
    position: relative;
  }
}
@media (min-width: 992px) {
  .story-single .story-content .right {
    width: 50%;
  }
}
.story-single .story-content .story-snippets {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .story-single .story-content .story-snippets {
    margin-top: 0;
  }
}
.story-single .story-content .story-snippets .story-snippet {
  font-family: acumin-pro, sans-serif;
  font-size: 20px;
  color: #FFFFFF;
  font-style: italic;
  line-height: 1.4;
  display: none;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .story-single .story-content .story-snippets .story-snippet {
    text-align: left;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .story-single .story-content .story-snippets .story-snippet {
    font-size: 21px;
  }
}
@media (min-width: 1600px) {
  .story-single .story-content .story-snippets .story-snippet {
    font-size: 23px;
  }
}
.story-single .story-content .story-snippets .story-snippet:nth-of-type(1) {
  display: block;
}
.story-single .story-content .story-podcast {
  width: 100%;
  margin-top: 50px;
  padding: 40px 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
.story-single .story-content .story-podcast a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 25px;
  background: #FFFFFF;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  height: 48px;
  line-height: 0;
  padding-bottom: 2px;
  transition: all 0.2s linear 0s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .story-single .story-content .story-podcast a {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }
}
.story-single .story-content .story-podcast a:before {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #000000;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 24px;
  transition: all 0.2s linear 0s;
}
.story-single .story-content .story-podcast a:hover {
  text-indent: -9999px;
}
.story-single .story-content .story-podcast a:hover:before {
  top: 0;
  text-indent: 0;
}
.story-single .story-content .story-back {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .story-single .story-content .story-back {
    display: none;
  }
}
.story-single .story-content .story-back img {
  width: 40px;
  height: auto;
}
.story-single .story-content .story-back .story-back-text {
  font-family: acumin-pro-extra-condensed, sans-serif;
  color: #FFFFFF;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 25px;
  margin-left: 20px;
}
.story-single .story-quotation {
  position: absolute;
  top: -9%;
  left: -2%;
  width: 30%;
  height: auto;
}
@media (min-width: 768px) {
  .story-single .story-quotation--image {
    display: none;
  }
}
.story-single .story-quotation--snippet {
  display: none;
}
@media (min-width: 768px) {
  .story-single .story-quotation--snippet {
    display: block;
    left: -40%;
    top: 0;
  }
}
.story-single .modal-outer {
  display: grid;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  /* Hide */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.story-single .modal-outer.open {
  opacity: 1;
  pointer-events: all;
  z-index: 999;
}
.theme-colour {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.theme-colour--purple {
  background-color: #C08BBD !important;
}
.theme-colour--blue {
  background-color: #6293CC !important;
}
.theme-colour--green {
  background-color: #9CC27E !important;
}
.theme-colour--coral {
  background-color: #E28587 !important;
}

.news-section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .news-section {
    padding: 5rem 0;
  }
}
.news-section .news-items-container.expanded .news-item {
  display: flex;
}
.news-section .news-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .news-section .news-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .news-section .news-items {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.8888888889rem;
  }
}
.news-section .news-item {
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
  color: #000000;
}
.news-section .news-item:nth-of-type(n + 6) {
  display: none;
}
@media (min-width: 768px) {
  .news-section .news-item {
    grid-column: auto/span 1;
  }
}
@media (min-width: 992px) {
  .news-section .news-item {
    grid-column: auto/span 2;
    border: 2px solid #000000;
  }
}
@media (min-width: 992px) {
  .news-section .news-item--feature {
    grid-column: auto/span 3;
  }
}
@media (min-width: 992px) {
  .news-section .news-item--feature .item-img {
    height: 270px;
  }
}
@media (min-width: 1600px) {
  .news-section .news-item--feature .item-img {
    height: 310px;
  }
}
@media (min-width: 992px) {
  .news-section .news-item--feature .item-title {
    -webkit-line-clamp: 1;
  }
}
.news-section .news-item:hover .item-more img {
  transform: scaleX(1.2);
}
.news-section .item-img-wrapper {
  overflow: hidden;
}
.news-section .item-img {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .news-section .item-img {
    height: 220px;
  }
}
@media (min-width: 1600px) {
  .news-section .item-img {
    height: 260px;
  }
}
.news-section .item-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .news-section .item-content {
    padding: 1.8888888889rem;
  }
}
.news-section .item-title {
  font-family: acumin-pro-extra-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .news-section .item-title {
    font-size: 2.1111111111rem;
  }
}
.news-section .item-more {
  display: inline-block;
  margin-top: 30px;
  text-transform: uppercase;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-size: 22px;
  color: #000000;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .news-section .item-more {
    font-size: 1.4444444444rem;
  }
}
.news-section .item-more img {
  display: block;
  margin-left: 20px;
  height: 16px;
  transform-origin: left;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .news-section .item-more img {
    height: 1.3333333333rem;
  }
}

#mailing-list {
  color: #FFFFFF;
  background-color: #000000;
}
#mailing-list .mailing-list-inner {
  padding: 40px 0px;
}
#mailing-list .mailing-list-inner hr {
  height: 1px;
  background-color: #989898;
  border: none;
  padding: 0;
  margin: 0;
  margin-top: 45px;
}
#mailing-list .mailing-list-inner .form-wrapper .nf-response-msg p {
  font-size: 14px;
}
@media (min-width: 992px) {
  #mailing-list .mailing-list-inner .form-wrapper .nf-response-msg p {
    font-size: 16px;
  }
}
#mailing-list .mailing-list-inner .form-wrapper .disclaimer {
  width: 715px;
  max-width: 100%;
  margin-top: 15px;
}
#mailing-list .mailing-list-inner .form-wrapper .disclaimer p {
  width: 715px;
  max-width: 100%;
  color: #FFFFFF;
  opacity: 0.75;
  text-align: justify;
  font-size: 8px;
  font-style: normal;
  margin: 0px 0px;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-form-content {
  padding: 0px 0px !important;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-field-label {
  display: none !important;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-before-form-content,
#mailing-list .mailing-list-inner .form-wrapper form .nf-after-field,
#mailing-list .mailing-list-inner .form-wrapper form .nf-after-form-content {
  display: none !important;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-field-container {
  margin-bottom: 0px;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-error .nf-error-msg {
  display: none !important;
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-error.field-wrap .nf-field-element::after {
  display: none !important;
}
#mailing-list .mailing-list-inner .form-wrapper form .submit-container {
  float: right;
}
#mailing-list .mailing-list-inner .form-wrapper form nf-rows-wrap .nf-row {
  display: inline-block;
}
#mailing-list .mailing-list-inner .form-wrapper form nf-rows-wrap .nf-row:first-of-type {
  width: calc(100% - 170px);
}
@media (min-width: 1300px) {
  #mailing-list .mailing-list-inner .form-wrapper form nf-rows-wrap .nf-row:first-of-type {
    width: calc(100% - 240px);
  }
}
#mailing-list .mailing-list-inner .form-wrapper form nf-rows-wrap .nf-row:last-of-type {
  width: 170px;
  float: right;
}
@media (min-width: 1300px) {
  #mailing-list .mailing-list-inner .form-wrapper form nf-rows-wrap .nf-row:last-of-type {
    width: 230px;
  }
}
#mailing-list .mailing-list-inner .form-wrapper form .nf-error input[type=text],
#mailing-list .mailing-list-inner .form-wrapper form .nf-error input[type=email],
#mailing-list .mailing-list-inner .form-wrapper form .nf-error input[type=tel] {
  border-bottom: 1px solid red !important;
}
#mailing-list .mailing-list-inner .form-wrapper form input[type=text],
#mailing-list .mailing-list-inner .form-wrapper form input[type=email],
#mailing-list .mailing-list-inner .form-wrapper form input[type=tel] {
  height: 40px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF !important;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-family: neue-haas-unica, sans-serif;
  outline: none;
  padding-left: 4px;
}
@media (min-width: 1300px) {
  #mailing-list .mailing-list-inner .form-wrapper form input[type=text],
#mailing-list .mailing-list-inner .form-wrapper form input[type=email],
#mailing-list .mailing-list-inner .form-wrapper form input[type=tel] {
    height: 50px;
    font-size: 15px;
  }
}
#mailing-list .mailing-list-inner .form-wrapper form input[type=text]::-moz-placeholder, #mailing-list .mailing-list-inner .form-wrapper form input[type=email]::-moz-placeholder, #mailing-list .mailing-list-inner .form-wrapper form input[type=tel]::-moz-placeholder {
  color: #FFFFFF;
}
#mailing-list .mailing-list-inner .form-wrapper form input[type=text]::placeholder,
#mailing-list .mailing-list-inner .form-wrapper form input[type=email]::placeholder,
#mailing-list .mailing-list-inner .form-wrapper form input[type=tel]::placeholder {
  color: #FFFFFF;
}
#mailing-list .mailing-list-inner .form-wrapper form input[type=text] .selected,
#mailing-list .mailing-list-inner .form-wrapper form input[type=email] .selected,
#mailing-list .mailing-list-inner .form-wrapper form input[type=tel] .selected {
  background: transparent;
}
#mailing-list .mailing-list-inner .form-wrapper form .submit-wrap {
  width: 140px;
  max-width: 100%;
}
#mailing-list .mailing-list-inner .form-wrapper form .submit-wrap input {
  width: 100%;
  height: 40px;
  text-transform: uppercase;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  line-height: 0;
  font-size: 14px;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
}
@media (min-width: 1300px) {
  #mailing-list .mailing-list-inner .form-wrapper form .submit-wrap input {
    height: 50px;
    font-size: 20px;
  }
}
#mailing-list .mailing-list-inner .form-wrapper form .submit-wrap input:hover {
  background: #DBDBDB;
}
@media (min-width: 1300px) {
  #mailing-list .mailing-list-inner .form-wrapper form .submit-wrap {
    width: 210px;
  }
}

.not-found {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .not-found {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .not-found {
    padding-top: 110px;
  }
}
.not-found .not-found-content {
  margin-top: 90px;
}
@media (min-width: 768px) {
  .not-found .not-found-content {
    display: flex;
    min-height: calc(100vh - 60px);
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}
@media (min-width: 992px) {
  .not-found .not-found-content {
    min-height: calc(100vh - 110px);
  }
}
.not-found .not-found-main {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 300px;
}
@media (min-width: 768px) {
  .not-found .not-found-main {
    max-width: none;
    margin-left: unset;
    margin-right: unset;
    width: 75%;
  }
}
.not-found .not-found-heading--mobile {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .not-found .not-found-heading--mobile {
    display: none;
  }
}
.not-found .not-found-heading--desktop {
  display: none;
}
@media (min-width: 768px) {
  .not-found .not-found-heading--desktop {
    display: block;
    width: 100%;
  }
}
.not-found .not-found-chevron {
  display: block;
  position: absolute;
  right: 85%;
  top: 52%;
  width: 80%;
  height: auto;
}
@media (min-width: 768px) {
  .not-found .not-found-chevron {
    width: 67%;
    right: 80%;
  }
}
.not-found .not-found-arrows-desktop {
  display: none;
}
@media (min-width: 768px) {
  .not-found .not-found-arrows-desktop {
    display: block;
    position: absolute;
    top: -7%;
    left: 105%;
    width: 41%;
    height: auto;
  }
}
.not-found .not-found-arrows-mobile {
  display: block;
  position: absolute;
  top: 52%;
  width: 15%;
  height: auto;
  right: 2%;
}
@media (min-width: 768px) {
  .not-found .not-found-arrows-mobile {
    display: none;
  }
}
.not-found .not-found-buttons {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}
@media (min-width: 768px) {
  .not-found .not-found-buttons {
    position: absolute;
    display: flex;
    max-width: none;
    flex-direction: row;
    gap: 1.1111111111rem;
    left: 86%;
    bottom: 22%;
    transform: translateY(50%);
    margin: 0;
  }
}
@media (min-width: 992px) {
  .not-found .not-found-buttons {
    gap: 1.6666666667rem;
  }
}
@media (min-width: 768px) {
  .not-found .not-found-buttons--mobile {
    display: none;
  }
}
.not-found .not-found-buttons--desktop {
  display: none;
}
@media (min-width: 768px) {
  .not-found .not-found-buttons--desktop {
    display: flex;
  }
}
@media (min-width: 768px) {
  .not-found .not-found-buttons .button {
    font-size: 1.5555555556rem;
    width: 130px;
    margin-top: 0;
    height: 40px;
  }
}
@media (min-width: 992px) {
  .not-found .not-found-buttons .button {
    width: 11.1111111111rem;
    height: 50px;
  }
}
@media (min-width: 1600px) {
  .not-found .not-found-buttons .button {
    height: 60px;
  }
}

.template-banner {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
}
@media (min-width: 768px) {
  .template-banner {
    display: none;
  }
}
.template-banner .banner-outer {
  height: 0;
  padding-top: 56.25%;
}
.template-banner .banner-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.template-banner .banner-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.template-main {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .template-main {
    padding-top: 7.7777777778rem;
    padding-bottom: 5.5555555556rem;
  }
}
@media (min-width: 992px) {
  .template-main {
    padding-top: 10rem;
  }
}
.template-main .main-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (min-width: 768px) {
  .template-main .main-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 54.4444444444rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.template-main .main-content ul {
  display: table;
  margin-top: 0.5em;
  border-collapse: separate;
  border-spacing: 0 1em;
}
.template-main .main-content ul li {
  list-style: none;
  display: table-row;
}
.template-main .main-content ul li::before {
  content: "■";
  display: table-cell;
  text-align: right;
  padding-right: 1em;
}
.template-main .main-content ol {
  list-style: revert;
  margin-top: 1em;
}
.template-main .main-content ol li {
  margin-left: 1em;
}
.template-main .main-content ol li:not(:first-of-type) {
  margin-top: 0.2em;
}
.template-main .main-content h2,
.template-main .main-content h3,
.template-main .main-content h4 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .template-main .content-col {
    width: 55%;
  }
}
.template-main .content-col .subheading {
  font-weight: 700;
  font-size: 13px;
}
@media (min-width: 768px) {
  .template-main .content-col .subheading {
    font-size: 1rem;
  }
}
.template-main .content-col .title {
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .template-main .content-col .title {
    font-size: 3.1111111111rem;
    margin-bottom: 2.2222222222rem;
  }
}
.template-main .content-col .date-right {
  font-weight: 700;
  margin-bottom: 0.4em;
}
.template-main .content-col .text {
  font-weight: 300;
}
.template-main .content-col .text p:not(:first-of-type) {
  margin-top: 0.8em;
}
.template-main .details-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .template-main .details-col {
    order: -1;
    width: 34%;
    align-items: flex-start;
    margin-top: 0;
  }
}
.template-main .details-col .chevron {
  display: block;
  max-height: 50px;
  transform: translateX(-200%);
  transition: 1.5s;
}
@media (min-width: 768px) {
  .template-main .details-col .chevron {
    max-height: none;
    width: 100%;
    margin-bottom: 3.3333333333rem;
    transform: translateX(-400%);
  }
}
.template-main .details-col .details-img-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .template-main .details-col .details-img-wrapper {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    width: 100%;
    margin-bottom: 1.6666666667rem;
  }
}
.template-main .details-col .details-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.template-main .details-col .details-summary {
  margin-top: 0.5555555556rem;
  font-weight: 300;
}
.template-main .details-col .details-summary p:not(:first-of-type) {
  margin-top: 1em;
}
.template-main .details-col .extra-details {
  width: 100%;
  font-weight: 300;
  font-weight: 500;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .template-main .details-col .extra-details {
    margin-top: 0;
  }
}
.template-main .details-col .template-buttons {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .template-main .details-col .template-buttons {
    width: auto;
    margin-top: 1.4444444444rem;
  }
}
.template-main .details-col .template-button {
  width: 100%;
  max-width: 400px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 0.8em 2.2em;
  border: 1px solid #000000;
  transition: 0.15s;
}
@media (min-width: 768px) {
  .template-main .details-col .template-button {
    font-size: 0.7777777778rem;
  }
}
@media (min-width: 768px) {
  .template-main .details-col .template-button.mobile {
    display: none;
  }
}
.template-main .details-col .template-button.desktop {
  display: none;
}
@media (min-width: 768px) {
  .template-main .details-col .template-button.desktop {
    display: flex;
  }
}
.template-main .details-col .template-button:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.template-main .details-col .template-button:hover img {
  filter: invert(0);
}
.template-main .details-col .template-button img {
  filter: invert(1);
  display: block;
  margin-left: 1em;
  height: 1em;
  transition: 0.15s;
}
.template-main .details-col.in-view .chevron {
  transform: translateX(0);
}

.template-media-heading {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .template-media-heading {
    margin-bottom: 2.7777777778rem;
  }
}
.template-media-heading h2 {
  text-align: center;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 30px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .template-media-heading h2 {
    font-size: 2.7777777778rem;
  }
}
.template-media-heading h2::before, .template-media-heading h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #000000;
}
.template-media-heading h2::before {
  margin-right: 0.6em;
}
@media (min-width: 768px) {
  .template-media-heading h2::before {
    margin-right: 0.8em;
  }
}
.template-media-heading h2::after {
  margin-left: 0.6em;
}
@media (min-width: 768px) {
  .template-media-heading h2::after {
    margin-left: 0.8em;
  }
}

.template-carousel--desktop {
  display: none;
}
@media (min-width: 768px) {
  .template-carousel--desktop {
    display: block;
  }
}
@media (min-width: 768px) {
  .template-carousel--mobile {
    display: none;
  }
}
.template-carousel .swiper-container {
  position: relative;
}
.template-carousel .swiper-container.hide-arrows .swiper-arrow {
  display: none !important;
}
.template-carousel .swiper-template {
  overflow-x: hidden;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .template-carousel .swiper-template {
    padding: 0;
  }
}
.template-carousel .swiper-wrapper {
  position: relative;
  z-index: 1;
}
.template-carousel .swiper-slide {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .template-carousel .swiper-slide {
    height: 250px;
  }
}
@media (min-width: 992px) {
  .template-carousel .swiper-slide {
    height: 300px;
  }
}
@media (min-width: 1300px) {
  .template-carousel .swiper-slide {
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .template-carousel .swiper-slide {
    height: 440px;
  }
}
.template-carousel .swiper-slide--video {
  cursor: pointer;
  position: relative;
}
.template-carousel .swiper-slide--video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../../img/icons/play-icon.svg");
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media (min-width: 1300px) {
  .template-carousel .swiper-slide--video::after {
    height: 90px;
    width: 90px;
  }
}
.template-carousel .swiper-arrow {
  width: 40px;
  height: 40px;
  background-image: url("../../img/graphics/carousel-arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
@media (min-width: 768px) {
  .template-carousel .swiper-arrow {
    top: 50%;
  }
}
@media (min-width: 992px) {
  .template-carousel .swiper-arrow {
    width: 50px;
    height: 50px;
  }
}
.template-carousel .swiper-arrow-prev {
  right: calc(50% + 4px);
}
@media (min-width: 768px) {
  .template-carousel .swiper-arrow-prev {
    right: unset;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
  }
}
.template-carousel .swiper-arrow-next {
  left: calc(50% + 4px);
  transform: scaleX(-1);
}
@media (min-width: 768px) {
  .template-carousel .swiper-arrow-next {
    left: unset;
    right: 0;
    transform: translateX(50%) translateY(-50%) scaleX(-1);
  }
}

.template-back-button {
  padding-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .template-back-button {
    padding-top: 5rem;
  }
}
.template-back-button.no-discover {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .template-back-button.no-discover {
    padding-bottom: 4.4444444444rem;
  }
}
.template-back-button a {
  display: inline-block;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #000000;
}
@media (min-width: 768px) {
  .template-back-button a {
    font-size: 2.4444444444rem;
  }
}

.page-template-page-custom-template header,
.single-internal_news header {
  color: #000000;
}
.page-template-page-custom-template header .header-contact,
.single-internal_news header .header-contact {
  background-color: #000000;
  color: #FFFFFF;
}
.page-template-page-custom-template header .header-logo img,
.single-internal_news header .header-logo img {
  filter: invert(1);
}
.page-template-page-custom-template header .header-nav-wrapper span,
.single-internal_news header .header-nav-wrapper span {
  color: #000000;
}
.page-template-page-custom-template header .header-nav-wrapper .nav-hamburger span,
.single-internal_news header .header-nav-wrapper .nav-hamburger span {
  background-color: #000000;
}

.news-video-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.news-video-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.news-video-overlay .modal-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 90%;
}
@media (min-width: 768px) {
  .news-video-overlay .modal-inner {
    max-width: min(80%, 1200px);
  }
}
.news-video-overlay .modal-inner .iframe-wrapper {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}
.news-video-overlay .modal-inner .iframe-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#illustrative-map .illustrative-map-inner img,
#illustrative-map .illustrative-map-inner svg {
  max-width: 100%;
  display: block;
  width: 100%;
}
