@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%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1500px;
  }
}

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

/*
font-family: aktiv-grotesk, sans-serif;
font-weight: 300;
font-weight: 400;
font-weight: 700;
*/
/*
font-family: titling-gothic-fb-compressed, sans-serif;
font-weight: 700;
*/
*,
*::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%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  padding-top: 0px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  text-align: left;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  body {
    padding-top: 0px;
  }
}

a {
  text-decoration: none;
}

sup {
  font-size: 80%;
  vertical-align: super;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #1D1D1B;
  z-index: 100;
  padding-top: 0px;
  transition: transform 0.4s ease;
}
@media (min-width: 992px) {
  .header {
    height: 100px;
    background-color: transparent;
  }
}
.header .container,
.header .row {
  height: 100%;
}
.header.headroom--unpinned {
  transform: translateY(-100%);
}
.header.headroom--not-top {
  background-color: #1D1D1B;
}

.covid-banner {
  height: 54px;
  width: 100%;
  background-color: #EF5300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.covid-banner a {
  color: #FFFFFF;
  text-decoration: underline;
}
.covid-banner p {
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .covid-banner p {
    font-size: 16px;
  }
}

.header-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}

.header-nav {
  display: none;
}
@media (min-width: 992px) {
  .header-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    order: 0;
  }
}
.header-nav li {
  font-size: 15px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .header-nav li {
    font-size: 13px;
    text-align: center;
  }
}
@media (min-width: 1700px) {
  .header-nav li {
    font-size: 14px;
  }
}
@media (min-width: 1700px) {
  .header-nav li {
    font-size: 15px;
  }
}
.header-nav a {
  display: block;
  color: inherit;
  font-weight: bold;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
}
.header-nav a.active {
  color: #9D54D1;
}
.header-nav a:hover {
  color: #9D54D1;
}

.nav-space {
  margin: 0 20px;
}

.header-toggle {
  position: relative;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 25px;
}
@media (min-width: 992px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
.header-toggle.active span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-toggle.active span:nth-of-type(2) {
  display: none;
}
.header-toggle.active span:first-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-toggle.active span:last-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-logo {
  display: block;
  width: 150px;
  height: auto;
  order: 0;
}
@media (min-width: 992px) {
  .header-logo {
    width: 200px;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .header-logo {
    width: 292px;
    height: 42px;
  }
}

.navigation {
  position: fixed;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid #FFFFFF;
  background-color: #1D1D1B;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.5s;
}
@media (min-width: 992px) {
  .navigation {
    display: none;
  }
}
.navigation.active {
  transform: translateX(0);
}

.navigation-list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
.navigation-list a {
  color: #FFFFFF;
  font-size: 4vw;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.navigation-list a:hover {
  color: #9D54D1;
}

.close-statement {
  background-image: url("/img/close.svg");
  display: block;
  height: 20px;
  width: 20px;
  background-size: cover;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 101;
}
@media (min-width: 992px) {
  .close-statement {
    height: 40px;
    width: 40px;
    right: 30px;
    top: 30px;
  }
}

.covid-content {
  background-color: #FFFFFF;
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 54px;
  padding: 60px 30px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}
.covid-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media (min-width: 992px) {
  .covid-content {
    padding: 80px 0px;
    position: fixed;
  }
}
.covid-content .covid-inner {
  width: 100%;
}
@media (min-width: 992px) {
  .covid-content .covid-inner {
    width: 70%;
    margin: 0 auto;
  }
}
.covid-content .covid-inner h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #EF5300;
  font-size: 23px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
}
.covid-content .covid-inner h4:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .covid-content .covid-inner h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .covid-content .covid-inner h4 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .covid-content .covid-inner h4 {
    font-size: 32px;
  }
}
.covid-content .covid-inner p {
  margin-top: 20px;
  color: #1D1D1B;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .covid-content .covid-inner p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .covid-content .covid-inner p {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
.covid-content .covid-inner p:first-of-type {
  margin-top: 0;
}
.covid-content .icons {
  width: 100%;
  margin-top: 60px;
}
.covid-content .icons.mobile {
  display: block;
}
@media (min-width: 992px) {
  .covid-content .icons.mobile {
    display: none;
  }
}
.covid-content .icons.mobile .icon-wrap {
  align-items: center;
}
@media (min-width: 768px) {
  .covid-content .icons .icon-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.covid-content .icons .icon-row .icon-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .covid-content .icons .icon-row .icon-wrap {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .covid-content .icons .icon-row .icon-wrap {
    width: 20%;
    margin-bottom: 0px;
  }
}
.covid-content .icons .icon-row .icon-wrap img {
  width: auto;
  height: 53px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .covid-content .icons .icon-row .icon-wrap img {
    height: 73px;
  }
}
.covid-content .icons .icon-row .icon-wrap h2 {
  color: #EF5300;
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 400;
  line-height: 1.02;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 992px) {
  .covid-content .icons .icon-row .icon-wrap h2 {
    margin-bottom: 30px;
    font-size: 25px;
    text-align: center;
  }
}
.covid-content .icons .icon-row .icon-wrap p {
  font-weight: 400;
  line-height: 1.4;
  color: #1D1D1B;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .covid-content .icons .icon-row .icon-wrap p {
    font-size: 16px;
  }
}

.footer {
  position: relative;
  padding: 30px 0;
  background-color: #1D1D1B;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .footer {
    padding: 50px 0;
  }
}

.footer-content {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.footer-content p {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer-content p {
    font-size: 16px;
  }
}
.footer-content img {
  display: block;
  margin: 20px auto 0;
  width: 126px;
  height: 83px;
}
@media (min-width: 768px) {
  .footer-content img {
    margin: 0 0 0 30px;
  }
}

.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  border: 30px solid black;
}

.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.grid-image {
  position: relative;
}
.grid-image .grid-image-content {
  opacity: 0;
  transition: opacity 1.4s;
}
.grid-image.in-view .grid-image-content {
  opacity: 1;
}
.grid-image .slider-shape {
  width: 49px;
  height: 100px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 2;
}
.grid-image .slider-shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .grid-image .slider-shape {
    width: 116px;
    height: 238px;
  }
}

.grid-image-content {
  width: 100%;
  padding: 0 15px;
  position: relative;
}
@media (min-width: 992px) {
  .grid-image-content {
    width: 100%;
  }
}
@media screen and (min-height: 1000px) {
  .grid-image-content {
    width: 100%;
    margin-left: 0;
  }
}

.grid-image-item {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  position: relative;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .intro {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .intro {
    margin-top: 50px;
  }
}
.intro.in-view .intro-heading {
  opacity: 1;
  transform: translateX(0);
}
.intro.in-view .accommodation-table {
  opacity: 1;
  transform: translateX(0);
}
.intro.in-view p {
  opacity: 1;
  transform: translateY(0);
}
.intro.in-view h4 {
  opacity: 1;
  transform: translateY(0);
}
.intro.in-view .options-columns .column {
  opacity: 1;
  transform: translateY(0);
}

.intro-content {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .intro-content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .intro-content {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .intro-content {
    width: 80%;
    margin: 0 auto;
  }
}
.intro-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #9D54D1;
  font-size: 23px;
  text-transform: uppercase;
  opacity: 0;
  text-align: center;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateY(20px);
  margin-top: 60px;
}
.intro-content h4 br {
  display: none;
}
@media (min-width: 768px) {
  .intro-content h4 br {
    display: block;
  }
}
.intro-content h4:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .intro-content h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .intro-content h4 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .intro-content h4 {
    font-size: 32px;
  }
}
.intro-content h4.white {
  color: #1D1D1B;
}
.intro-content p {
  margin-top: 20px;
  color: #1D1D1B;
  font-weight: 400;
  font-size: 16px;
  opacity: 0;
  text-align: center;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateY(40px);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .intro-content p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .intro-content p {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
.intro-content p:first-of-type {
  margin-top: 0;
}

p.small-text {
  color: #FFFFFF;
  font-weight: 400;
  width: 100%;
  text-align: left;
  font-size: 11px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  p.small-text {
    font-size: 16px;
  }
}

.black-intro-bg {
  background-image: url("/img/black-intro-bg.svg");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.options-columns {
  width: 100%;
  margin-top: 60px;
  padding: 0 30px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .options-columns {
    padding: 0 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.options-columns .column {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s, transform 1.4s;
  width: 100%;
}
.options-columns .column.two {
  transition-delay: 0.5s;
}
.options-columns .column.three {
  transition-delay: 0.8s;
}
@media (min-width: 768px) {
  .options-columns .column {
    margin-bottom: 0;
  }
}
.options-columns .column img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.options-columns .column h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #1D1D1B;
  font-size: 20px;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
}
.options-columns .column h4:first-of-type {
  margin-top: 0;
}
@media (min-width: 768px) {
  .options-columns .column h4 {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .options-columns .column h4 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .options-columns .column h4 {
    font-size: 30px;
  }
}
.options-columns .column p {
  margin-top: 20px;
  color: #1D1D1B;
  font-weight: 400;
  font-size: 14px;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .options-columns .column p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .options-columns .column p {
    margin: 20px auto 0 auto;
  }
}
@media (min-width: 768px) {
  .options-columns .column {
    width: 32%;
  }
}

.intro-heading {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 2s;
}
@media (min-width: 768px) {
  .intro-heading {
    margin-top: 40px;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .intro-heading {
    margin-top: 50px;
  }
}

.intro-title {
  display: block;
  width: 100%;
  height: auto;
}

.accommodation-table {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 40px 15px;
  text-align: left;
  flex-direction: column;
  display: flex;
  opacity: 1;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(40px);
  transition-delay: 2s;
}
@media (min-width: 992px) {
  .accommodation-table {
    padding: 100px 0 100px 20px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.accommodation-table .table {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .accommodation-table .table {
    width: 100%;
  }
}
.accommodation-table .table .table-row {
  color: #1D1D1B;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c8c8c8;
  font-size: 11px;
}
@media (min-width: 768px) {
  .accommodation-table .table .table-row {
    font-size: 16px;
  }
}
.accommodation-table .table .table-row strong {
  font-weight: 700;
}
.accommodation-table .table .table-row.highlight {
  background-color: rgba(109, 114, 120, 0.3);
}
.accommodation-table .table .table-row .floor,
.accommodation-table .table .table-row .sqft,
.accommodation-table .table .table-row .desk,
.accommodation-table .table .table-row .spec {
  border-right: 1px solid #c8c8c8;
}
.accommodation-table .table .table-row .spec {
  width: 40%;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .accommodation-table .table .table-row .spec {
    padding: 15px 15px;
  }
}
.accommodation-table .table .table-row .download {
  width: 20%;
  padding: 15px;
  color: #1D1D1B;
  font-weight: 700;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .accommodation-table .table .table-row .download {
    padding: 15px 15px;
  }
}
.accommodation-table .table .table-row .floor,
.accommodation-table .table .table-row .sqft,
.accommodation-table .table .table-row .desk {
  width: 12.5%;
  padding: 15px;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .accommodation-table .table .table-row .floor,
.accommodation-table .table .table-row .sqft,
.accommodation-table .table .table-row .desk {
    padding: 15px 15px;
  }
}
.accommodation-table .table .table-row .desk {
  width: 15%;
  font-weight: 700;
}
.accommodation-table .table .table-row.titles {
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #c8c8c8;
  color: #9D54D1;
}
.accommodation-table .table .table-row.total {
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 0px solid #EF5300;
  color: #9D54D1;
  justify-content: flex-start;
  font-size: 11px;
}
@media (min-width: 768px) {
  .accommodation-table .table .table-row.total {
    font-size: 20px;
  }
}
.accommodation-table .table .table-row a {
  position: relative;
  overflow: visible;
  z-index: 1;
  color: #1D1D1B;
}
.accommodation-table .table .table-row a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 0;
  right: 0;
  bottom: -10px;
  background: #1D1D1B;
  transition: width 0.4s ease;
  -webkit-transition: width 0.4s ease;
  z-index: -1;
}
.accommodation-table .table .table-row a:hover:after {
  width: 100%;
  left: 0;
}
.accommodation-table .table .table-row--let {
  color: #9D54D1;
}

.intro-floors {
  display: block;
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .intro-floors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .intro-floors {
    justify-content: flex-end;
    margin-top: 50px;
  }
}

.intro-floor {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .intro-floor {
    width: 33.3334%;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .intro-floor {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .intro-floor {
    width: 20%;
  }
}
.intro-floor:first-of-type {
  margin-top: 0;
}

.intro-floor-inner {
  display: block;
  width: 100%;
  border: 1px solid #FFFFFF;
}

.intro-floor-content {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  background-color: #EF5300;
}
.intro-floor-content h3 {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .intro-floor-content h3 {
    font-size: 14px;
  }
}
.intro-floor-content span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background-color: #F4874D;
}
.intro-floor-content h4 {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .intro-floor-content h4 {
    font-size: 14px;
  }
}
.intro-floor-content h4 strong {
  font-weight: 700;
}
.intro-floor-content p {
  font-size: 13px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .intro-floor-content p {
    font-size: 14px;
  }
}

.intro-floor-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #FFFFFF;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #EF5300;
  text-transform: uppercase;
  background-color: #1D1D1B;
}
@media (min-width: 992px) {
  .intro-floor-link {
    font-size: 14px;
  }
}

.spaceplan {
  position: relative;
}
@media (min-width: 992px) {
  .spaceplan {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.spaceplan.in-view .spaceplan-image {
  opacity: 1;
  transform: translateX(0);
}
.spaceplan.in-view .spaceplan-content {
  opacity: 1;
  transform: translateX(0);
}
.spaceplan.in-view p {
  opacity: 1;
  transform: translateX(0);
}

.spaceplan-image {
  position: relative;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
}
@media (min-width: 768px) {
  .spaceplan-image {
    width: calc(50% + 100px);
  }
}
@media (min-width: 992px) {
  .spaceplan-image {
    width: calc(50% + 20px);
  }
}
@media (min-width: 1200px) {
  .spaceplan-image {
    width: calc(50% + 10px);
  }
}

.spaceplan-img {
  position: relative;
  width: 90%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.spaceplan-img img {
  width: 90%;
  margin: 0 auto;
  height: auto;
}
@media (min-width: 768px) {
  .spaceplan-img img {
    width: 100%;
  }
}

.spaceplan-title {
  padding: 0 15px;
}
.spaceplan-title h2 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #EF5300;
  font-size: 23px;
  text-transform: uppercase;
  text-align: left;
}
.spaceplan-title h3 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}
@media (min-width: 992px) {
  .spaceplan-title {
    display: none;
  }
}

.spaceplan-content {
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(40px);
  transition-delay: 1s;
}
@media (min-width: 768px) {
  .spaceplan-content {
    width: 66.6667%;
    margin-top: 50px;
    margin-left: 25%;
  }
}
@media (min-width: 992px) {
  .spaceplan-content {
    width: 275px;
    margin-top: 0;
    margin-left: 60px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .spaceplan-content {
    width: 450px;
  }
}
.spaceplan-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #FFFFFF;
  font-size: 23px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .spaceplan-content h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .spaceplan-content h4 {
    font-size: 28px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .spaceplan-content h4 {
    font-size: 32px;
  }
}
.spaceplan-content .icons {
  width: 100%;
  display: none;
}
@media (min-width: 992px) {
  .spaceplan-content .icons {
    display: block;
  }
}
.spaceplan-content .icons.mobile {
  display: block;
}
@media (min-width: 992px) {
  .spaceplan-content .icons.mobile {
    display: none;
  }
}
.spaceplan-content .icons.mobile .icon-wrap {
  align-items: center;
}
.spaceplan-content .icons .icon-row {
  display: flex;
  flex-direction: row;
}
.spaceplan-content .icons .icon-row .icon-wrap {
  display: flex;
  flex-direction: column;
  width: 33.333333%;
}
.spaceplan-content .icons .icon-row .icon-wrap img {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
}
.spaceplan-content .icons .icon-row .icon-wrap p {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 400;
  line-height: 1.02;
  color: #1D1D1B;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 992px) {
  .spaceplan-content .icons .icon-row .icon-wrap p {
    margin-bottom: 30px;
    font-size: 21px;
    text-align: left;
  }
}
.spaceplan-content p {
  margin-bottom: 20px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .spaceplan-content p {
    font-size: 16px;
  }
}
.spaceplan-content ul {
  display: block;
}
.spaceplan-content li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .spaceplan-content li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .spaceplan-content li {
    padding-left: 20px;
  }
}
.spaceplan-content li:before {
  content: "–";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .spaceplan-content li:before {
    font-size: 16px;
  }
}
.spaceplan-content li:last-of-type {
  margin-bottom: 0;
}

.slider {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .slider {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .slider {
    padding: 120px 0;
  }
}

.slider-wrap {
  position: relative;
  width: 100%;
  padding: 0 0px;
}

.slider-main,
.slider-main-wellness,
.slider-main-capsule {
  width: 100%;
  height: 350px;
  position: relative;
}
@media (min-width: 768px) {
  .slider-main,
.slider-main-wellness,
.slider-main-capsule {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .slider-main,
.slider-main-wellness,
.slider-main-capsule {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .slider-main,
.slider-main-wellness,
.slider-main-capsule {
    height: 600px;
  }
}
@media (min-width: 768px) {
  .slider-main.slider-main-capsule,
.slider-main-wellness.slider-main-capsule,
.slider-main-capsule.slider-main-capsule {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .slider-main.slider-main-capsule,
.slider-main-wellness.slider-main-capsule,
.slider-main-capsule.slider-main-capsule {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .slider-main.slider-main-capsule,
.slider-main-wellness.slider-main-capsule,
.slider-main-capsule.slider-main-capsule {
    height: 700px;
  }
}
.slider-main .slider-shape,
.slider-main-wellness .slider-shape,
.slider-main-capsule .slider-shape {
  width: 49px;
  height: 100px;
  position: absolute;
  bottom: 0px;
  right: -1px;
  z-index: 2;
}
.slider-main .slider-shape img,
.slider-main-wellness .slider-shape img,
.slider-main-capsule .slider-shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .slider-main .slider-shape,
.slider-main-wellness .slider-shape,
.slider-main-capsule .slider-shape {
    width: 116px;
    height: 238px;
  }
}
.slider-main .slides,
.slider-main .slide,
.slider-main-wellness .slides,
.slider-main-wellness .slide,
.slider-main-capsule .slides,
.slider-main-capsule .slide {
  width: 100%;
  height: 100%;
}
.slider-main .slide,
.slider-main-wellness .slide,
.slider-main-capsule .slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.slider-main .slide .caption,
.slider-main-wellness .slide .caption,
.slider-main-capsule .slide .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 10px;
  background-color: #1D1D1B;
  display: block;
}
.slider-main .slide .caption p,
.slider-main-wellness .slide .caption p,
.slider-main-capsule .slide .caption p {
  color: #FFFFFF;
  font-size: 11px;
}
.slider-main .slide .caption p.white,
.slider-main-wellness .slide .caption p.white,
.slider-main-capsule .slide .caption p.white {
  color: #FFFFFF;
}
.slider-main .flex-control-nav,
.slider-main-wellness .flex-control-nav,
.slider-main-capsule .flex-control-nav {
  width: auto;
  position: relative;
  bottom: 0;
  /* text-align: right; */
  z-index: 10;
  margin-top: 20px;
  position: absolute;
  right: 100px;
}
@media (min-width: 992px) {
  .slider-main .flex-control-nav,
.slider-main-wellness .flex-control-nav,
.slider-main-capsule .flex-control-nav {
    right: 176px;
  }
}
.slider-main .flex-control-nav li,
.slider-main-wellness .flex-control-nav li,
.slider-main-capsule .flex-control-nav li {
  margin: 0 2px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
@media (min-width: 992px) {
  .slider-main .flex-control-nav li,
.slider-main-wellness .flex-control-nav li,
.slider-main-capsule .flex-control-nav li {
    margin: 0 2px;
  }
}
.slider-main .flex-control-paging li a,
.slider-main-wellness .flex-control-paging li a,
.slider-main-capsule .flex-control-paging li a {
  width: 10px;
  height: 10px;
  display: block;
  background-color: transparent;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  border: 1px solid #fff;
}
@media (min-width: 992px) {
  .slider-main .flex-control-paging li a,
.slider-main-wellness .flex-control-paging li a,
.slider-main-capsule .flex-control-paging li a {
    width: 10px;
    height: 10px;
  }
}
.slider-main .flex-control-paging li a:hover,
.slider-main-wellness .flex-control-paging li a:hover,
.slider-main-capsule .flex-control-paging li a:hover {
  background-color: #FFFFFF;
  border: 1px solid #fff;
}
.slider-main .flex-control-paging li a.flex-active,
.slider-main-wellness .flex-control-paging li a.flex-active,
.slider-main-capsule .flex-control-paging li a.flex-active {
  background-color: #FFFFFF;
  border: 1px solid #fff;
  cursor: default;
}

.slider-arrows {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
  display: none;
}
@media (min-width: 768px) {
  .slider-arrows {
    justify-content: flex-end;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .slider-arrows {
    margin-top: 50px;
  }
}

.slider-arrow {
  display: block;
  margin-right: 15px;
}
.slider-arrow:last-of-type {
  margin-right: 0;
}
.slider-arrow img {
  display: block;
  width: 145px;
  height: 25px;
}

.slider-arrow--prev img {
  transform: rotate(180deg);
}

.spec {
  position: relative;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .spec {
    padding-top: 100px;
  }
}
.spec.in-view .spec-heading {
  opacity: 1;
  transform: translateX(0);
}
.spec.in-view li {
  opacity: 1;
  transform: translateY(0);
}

.spec-heading {
  width: 50%;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
}

.spec-title {
  display: block;
  width: 100%;
  height: auto;
}

.spec-content {
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .spec-content {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .spec-content {
    width: 90%;
    margin: 50px auto 0 auto;
  }
}
.spec-content .icons {
  width: 100%;
}
@media (min-width: 992px) {
  .spec-content .icons {
    display: block;
  }
}
.spec-content .icons .spec-button {
  display: block;
  width: 267px;
  margin-top: 15px;
  padding: 0 15px;
  margin: 15px auto 0 auto;
}
@media (min-width: 768px) {
  .spec-content .icons .spec-button {
    margin: 30px auto 0 auto;
  }
}
@media (min-width: 992px) {
  .spec-content .icons .spec-button {
    margin: 40px auto 0 auto;
  }
}
@media (min-width: 1200px) {
  .spec-content .icons .spec-button {
    margin: 50px auto 0 auto;
  }
}
.spec-content .icons .spec-button .arrow {
  width: 18px;
  height: 23px;
  margin-right: 10px;
}
.spec-content .icons .spec-button .arrow img {
  width: 18px;
  height: 23px;
}
.spec-content .icons .spec-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-align: center;
  background-color: #9D54D1;
}
@media (min-width: 992px) {
  .spec-content .icons .spec-button a {
    font-size: 16px;
  }
}
.spec-content .icons .icon-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.spec-content .icons .icon-row .icon-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 30px;
  align-items: center;
  max-width: 350px;
}
@media (min-width: 768px) {
  .spec-content .icons .icon-row .icon-wrap {
    width: 50%;
    max-width: none;
    padding-right: 40px;
  }
}
.spec-content .icons .icon-row .icon-wrap .icon {
  width: 65px;
  margin-right: 30px;
  display: flex;
  justify-content: center;
}
.spec-content .icons .icon-row .icon-wrap img {
  width: 58px;
  height: auto;
}
.spec-content .icons .icon-row .icon-wrap p {
  font-weight: 400;
  line-height: 1.4;
  color: #1D1D1B;
  font-size: 14px;
  text-align: left;
}
@media (min-width: 992px) {
  .spec-content .icons .icon-row .icon-wrap p {
    font-size: 16px;
    text-align: left;
  }
}
.spec-content ul {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .spec-content ul {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.spec-content li {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding-left: 15px;
  color: #1D1D1B;
  font-size: 14px;
  transform: translateY(10px);
  transition: opacity 1.4s, transform 1.4s;
  opacity: 0;
  transition-delay: 3s;
}
.spec-content li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.spec-content li:nth-of-type(2) {
  transition-delay: 0.4s;
}
.spec-content li:nth-of-type(3) {
  transition-delay: 0.6s;
}
.spec-content li:nth-of-type(4) {
  transition-delay: 0.8s;
}
.spec-content li:nth-of-type(5) {
  transition-delay: 1s;
}
.spec-content li:nth-of-type(6) {
  transition-delay: 1.2s;
}
.spec-content li:nth-of-type(7) {
  transition-delay: 1.4s;
}
.spec-content li:nth-of-type(8) {
  transition-delay: 1.6s;
}
.spec-content li:nth-of-type(9) {
  transition-delay: 1.8s;
}
.spec-content li:nth-of-type(10) {
  transition-delay: 2s;
}
.spec-content li:nth-of-type(11) {
  transition-delay: 2.2s;
}
.spec-content li:nth-of-type(12) {
  transition-delay: 2.4s;
}
.spec-content li:nth-of-type(13) {
  transition-delay: 2.6s;
}
.spec-content li:nth-of-type(14) {
  transition-delay: 2.8s;
}
.spec-content li:nth-of-type(15) {
  transition-delay: 3s;
}
.spec-content li:nth-of-type(16) {
  transition-delay: 3.2s;
}
.spec-content li:nth-of-type(17) {
  transition-delay: 3.4s;
}
.spec-content li:nth-of-type(18) {
  transition-delay: 3.6s;
}
.spec-content li:nth-of-type(19) {
  transition-delay: 3.8s;
}
@media (min-width: 768px) {
  .spec-content li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .spec-content li {
    padding-left: 20px;
  }
}
.spec-content li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #9D54D1;
}
@media (min-width: 768px) {
  .spec-content li:before {
    font-size: 16px;
  }
}

.capsule {
  padding-top: 50px;
  position: relative;
}
@media (min-width: 992px) {
  .capsule {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 0;
  }
}
.capsule.in-view .capsule-image {
  opacity: 1;
  transform: translateX(0);
}
.capsule.in-view .capsule-title {
  opacity: 1;
}
.capsule.in-view li {
  opacity: 1;
  transform: translateY(0);
}
.capsule.in-view .capsule-content {
  opacity: 1;
  transform: translateX(0);
}

.capsule-header {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .capsule-header {
    width: 100%;
  }
}

.capsule-image {
  position: relative;
  width: 75%;
  margin-top: 60px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
  margin-top: -82px;
  z-index: -1;
}
@media (min-width: 768px) {
  .capsule-image {
    width: calc(50% + 100px);
  }
}
@media (min-width: 992px) {
  .capsule-image {
    width: calc(50% + 39px);
  }
}
@media (min-width: 1200px) {
  .capsule-image {
    width: calc(50% + 48px);
  }
}

.capsule-img {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .capsule-img {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .capsule-img {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .capsule-img {
    height: 700px;
  }
}

.capsule-title {
  width: 70%;
  height: auto;
  position: absolute;
  z-index: 10;
  right: 30px;
  top: 30px;
}

.capsule-content {
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(40px);
  transition-delay: 2s;
}
@media (min-width: 768px) {
  .capsule-content {
    width: 66.6667%;
    margin-top: 50px;
    margin-left: 25%;
  }
}
@media (min-width: 992px) {
  .capsule-content {
    width: 353px;
    margin-top: 50px;
    margin-left: 60px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .capsule-content {
    width: 500px;
  }
}
.capsule-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #9D54D1;
  font-size: 23px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .capsule-content h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .capsule-content h4 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .capsule-content h4 {
    font-size: 32px;
  }
}
.capsule-content h4.white {
  color: #1D1D1B;
}
.capsule-content p {
  margin-bottom: 20px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .capsule-content p {
    font-size: 16px;
  }
}
.capsule-content ul {
  display: block;
}
.capsule-content li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .capsule-content li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .capsule-content li {
    padding-left: 20px;
  }
}
.capsule-content li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #9D54D1;
}
@media (min-width: 768px) {
  .capsule-content li:before {
    font-size: 16px;
  }
}
.capsule-content li:last-of-type {
  margin-bottom: 0;
}

.capsule-shape {
  width: 49px;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: -1px;
  z-index: 2;
}
.capsule-shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .capsule-shape {
    width: 116px;
    height: 238px;
  }
}

.connections {
  position: relative;
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .connections {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .connections {
    margin-top: 120px;
  }
}
.connections.in-view .connections-image {
  opacity: 1;
  transform: translateX(0);
}
.connections.in-view .connections-heading {
  opacity: 1;
  transform: translateX(0);
}
.connections.in-view li {
  opacity: 1;
  transform: translateY(0);
}
.connections.in-view .connections-content {
  opacity: 1;
  transform: translateX(0);
}

.connections-image {
  position: absolute;
  top: 130px;
  right: 0;
  height: 200px;
  left: 20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(40px);
  transition-delay: 0s;
}
.connections-image .connections-shape {
  width: 60px;
  height: 99px;
  position: absolute;
  top: 0px;
  left: -2px;
  z-index: 2;
}
.connections-image .connections-shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .connections-image .connections-shape {
    width: 108px;
    height: 180px;
  }
}
@media (min-width: 768px) {
  .connections-image {
    top: 200px;
    left: 40%;
    height: 280px;
  }
}
@media (min-width: 992px) {
  .connections-image {
    top: 0;
    bottom: 0;
    left: 50%;
    height: auto;
    background-position: center bottom;
  }
}
@media (min-width: 1200px) {
  .connections-image {
    left: 50%;
  }
}

.connections-heading-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.connections-heading {
  width: 100%;
  margin-bottom: 210px;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 1s;
}
@media (min-width: 768px) {
  .connections-heading {
    margin-bottom: 250px;
  }
}
@media (min-width: 992px) {
  .connections-heading {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .connections-heading {
    margin-bottom: 50px;
  }
}

.connections-title {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media (min-width: 768px) {
  .connections-title {
    width: 83.3334%;
    max-width: initial;
  }
}
@media (min-width: 992px) {
  .connections-title {
    width: 41.6667%;
  }
}

.connections-content {
  width: 75%;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-50px);
  transition-delay: 1.4s;
}
@media (min-width: 768px) {
  .connections-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .connections-content {
    display: block;
    width: 33.3334%;
  }
}
@media (min-width: 1200px) {
  .connections-content {
    width: 25%;
  }
}

.connection {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .connection {
    width: 37%;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .connection {
    width: 100%;
    margin-top: 50px;
  }
}
.connection:first-of-type {
  margin-top: 0;
}
.connection h4 {
  margin-top: 5px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 0.95;
  color: #9D54D1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .connection h4 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .connection h4 {
    font-size: 32px;
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .connection h4 {
    font-size: 37px;
  }
}
@media (min-width: 1700px) {
  .connection h4 {
    font-size: 40px;
  }
}
.connection h5 {
  margin-top: 5px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: #1D1D1B;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .connection h5 {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .connection h5 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .connection h5 {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .connection h5 {
    font-size: 20px;
  }
}

.connection-name {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}

.connection-icon {
  display: block;
  width: 20px;
  height: 33px;
  margin-right: 10px;
}

.connection-distance {
  display: block;
  font-size: 23px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 0.7;
  color: #1D1D1B;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .connection-distance {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .connection-distance {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .connection-distance {
    font-size: 37px;
  }
}
@media (min-width: 1700px) {
  .connection-distance {
    font-size: 40px;
  }
}

.location-nav {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.location-nav ul {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .location-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.location-nav li {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .location-nav li {
    flex: 1;
    width: auto;
  }
}

label, #filter-clear {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 5px;
  border: 1px solid #FFFFFF;
  border-bottom: 1px solid transparent;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  color: #FFFFFF;
  cursor: pointer;
  text-align: center;
  background-color: #1D1D1B;
}
@media (min-width: 768px) {
  label, #filter-clear {
    border-right: 1px solid transparent;
    border-bottom: 1px solid #FFFFFF;
  }
}
@media (min-width: 992px) {
  label, #filter-clear {
    font-size: 16px;
  }
}

#filter-clear {
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + label {
  color: #FFFFFF;
  background-color: #9D54D1;
}

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

.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.location-overlay {
  padding: 20px 50px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 0.7;
  color: #1D1D1B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .location-overlay {
    font-size: 16px;
  }
}

.connections-slider .slider-wrap {
  padding: 0;
}
.connections-slider .slider-main-capsule {
  height: 500px;
}
@media (min-width: 768px) {
  .connections-slider .slider-main-capsule {
    height: 520px;
  }
}
@media (min-width: 992px) {
  .connections-slider .slider-main-capsule {
    height: 580px;
  }
}
@media (min-width: 1200px) {
  .connections-slider .slider-main-capsule {
    height: 650px;
  }
}
@media (min-width: 1700px) {
  .connections-slider .slider-main-capsule {
    height: 720px;
  }
}
.connections-slider .flex-control-nav {
  bottom: 32%;
  left: 60%;
  transform: translateX(-50%);
  right: auto;
}
@media (min-width: 768px) {
  .connections-slider .flex-control-nav {
    bottom: 0;
    left: auto;
    right: 30%;
    transform: translateX(50%);
  }
}
.connections-slider .slide {
  display: flex;
  flex-direction: column;
}
.connections-slider .slide .connections-image {
  display: block;
  margin-top: 130px;
  position: relative;
  top: 0;
  width: 80%;
  background-position: center;
}
@media (min-width: 768px) {
  .connections-slider .slide .connections-image {
    height: 100%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .connections-slider .slide .connections-image {
    width: 50%;
  }
}
.connections-slider .slide .connections-slide-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .connections-slider .slide .connections-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.connections-slider .slide .connections-slide-text .connections-content {
  padding: 0;
}

.location {
  position: relative;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .location {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .location {
    margin-top: 120px;
  }
}

.location-content {
  width: 100%;
  padding: 0 15px;
}

.location-map {
  width: 100%;
  height: 300px;
  background-color: #EF5300;
}
@media (min-width: 768px) {
  .location-map {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .location-map {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .location-map {
    height: 650px;
  }
}

.downloads {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .downloads {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .downloads {
    padding: 120px 0;
  }
}
.downloads.in-view .downloads-heading {
  opacity: 1;
  transform: translateY(0);
}
.downloads.in-view .downloads-content {
  opacity: 1;
}

.downloads-heading {
  width: 83.3334%;
  margin-left: 8.3334%;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateY(-20px);
  transition-delay: 1s;
}
@media (min-width: 1200px) {
  .downloads-heading {
    width: 66.6667%;
    margin-left: 16.6667%;
  }
}

.downloads-title {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .downloads-title {
    max-width: initial;
    margin: 0;
  }
}

.downloads-content {
  position: relative;
  width: 100%;
  margin-top: 15px;
  padding-bottom: 50px;
  opacity: 0;
  transition: opacity 1.4s;
  transition-delay: 1.4s;
}
@media (min-width: 768px) {
  .downloads-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .downloads-content {
    padding-bottom: 120px;
  }
}
.downloads-content:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 1px;
  background-color: #979797;
}

.download-item {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .download-item {
    width: 33.3334%;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .download-item {
    width: 30%;
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .download-item {
    width: 25%;
    margin-top: 50px;
  }
}
.download-item .arrow {
  width: 18px;
  height: 23px;
  margin-right: 10px;
}
.download-item .arrow img {
  width: 18px;
  height: 23px;
}
.download-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-align: center;
  background-color: #9D54D1;
}
@media (min-width: 992px) {
  .download-item a {
    font-size: 16px;
  }
}

.contact {
  position: relative;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .contact {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .contact {
    padding-bottom: 120px;
  }
}

.contact-content {
  width: 100%;
}
@media (min-width: 992px) {
  .contact-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.contact-heading {
  width: 50%;
  margin-bottom: 50px;
  margin-left: 25%;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .contact-heading {
    width: 33.3334%;
    margin-left: 8.3334%;
  }
}
@media (min-width: 992px) {
  .contact-heading {
    width: 25%;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.contact-title {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-title {
    max-width: initial;
  }
}

.contacts {
  width: 100%;
}
@media (min-width: 768px) {
  .contacts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .contacts {
    width: 73%;
    margin-left: 3%;
  }
}
@media (min-width: 1200px) {
  .contacts {
    width: 61%;
  }
}

.contact-item {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 0 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-item {
    width: 33.3334%;
  }
}
@media (min-width: 992px) {
  .contact-item {
    width: 33.3334%;
    margin-top: 0;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .contact-item {
    width: 33.3334%;
  }
}
.contact-item h4 {
  margin-bottom: 10px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #9D54D1;
  font-size: 23px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact-item h4 {
    margin-bottom: 20px;
    font-size: 25px;
  }
}
.contact-item h4.white {
  color: #1D1D1B;
}
.contact-item p,
.contact-item a {
  display: block;
  font-size: 13px;
  color: #1D1D1B;
}
@media (min-width: 992px) {
  .contact-item p,
.contact-item a {
    font-size: 14px;
  }
}
.contact-item p {
  margin-top: 10px;
}

.contact-item--full {
  margin-top: 0;
}
@media (min-width: 768px) {
  .contact-item--full {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .contact-item--full {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .contact-item--full {
    width: 100%;
  }
}
.contact-item--full.last {
  margin-top: 40px;
}

.contact-logo {
  display: block;
  width: 117px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .contact-logo {
    margin: 0;
  }
}

.grey-accom-bg {
  position: absolute;
  background-image: url("/img/grey-accom-bg.svg");
  top: 50%;
  left: 0;
  width: 100%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
  height: 2286px;
}

.sustainability {
  position: relative;
  width: 100%;
  z-index: -1;
  padding: 120px 0 100px 0;
  margin: 0px 0 0px 0;
}
.sustainability .grey-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  .sustainability .grey-shape {
    width: calc(50% + 100px);
  }
}
@media (min-width: 992px) {
  .sustainability .grey-shape {
    width: calc(50% + 39px);
  }
}
@media (min-width: 1200px) {
  .sustainability .grey-shape {
    width: 46%;
  }
}
.sustainability .grey-shape img {
  width: 100%;
  height: auto;
}
.sustainability.in-view .sustainability-heading {
  opacity: 1;
  transform: translateX(0);
}
.sustainability.in-view .managed-heading {
  opacity: 1;
  transform: translateX(0);
}
.sustainability.in-view li {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .sustainability .inner {
    display: flex;
    flex-direction: row;
  }
}

.sustainability-heading {
  width: 50%;
  padding: 0 0px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
  margin-bottom: 100px;
}

.sustainability-title {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .sustainability-title {
    width: 365px;
    height: 637px;
  }
}

.managed-heading {
  width: 70%;
  padding: 0 15px 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .managed-heading {
    width: 330px;
    padding: 0 60px 0 0px;
    margin-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .managed-heading {
    width: 424px;
    padding: 0 60px 0 0px;
    margin-bottom: 0px;
  }
}
.managed-heading .managed-title {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .managed-heading .managed-title {
    width: 300px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .managed-heading .managed-title {
    width: 389px;
    height: auto;
  }
}

.managed-content {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .managed-content {
    padding: 0 0px;
  }
}
.managed-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #1D1D1B;
  font-size: 23px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .managed-content h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .managed-content h4 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .managed-content h4 {
    font-size: 32px;
  }
}
.managed-content p {
  margin-bottom: 20px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .managed-content p {
    font-size: 16px;
  }
}
.managed-content .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.managed-content .wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .managed-content .wrapper {
    display: flex;
    flex-direction: row;
  }
}
.managed-content .wrapper .text.one {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .managed-content .wrapper .text.one {
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .managed-content .wrapper .text {
    width: 50%;
    padding-right: 60px;
  }
}
.managed-content .wrapper .text h4.orange {
  color: #9D54D1;
}
.managed-content .wrapper .text p.small {
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 768px) {
  .managed-content .wrapper .text p.small {
    font-size: 14px;
  }
}
.managed-content ul {
  display: block;
  width: 100%;
}
.managed-content li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  color: #1D1D1B;
  font-size: 14px;
  transform: translateY(10px);
  transition: opacity 1.4s, transform 1.4s;
  opacity: 0;
  transition-delay: 3s;
}
.managed-content li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.managed-content li:nth-of-type(2) {
  transition-delay: 0.4s;
}
.managed-content li:nth-of-type(3) {
  transition-delay: 0.6s;
}
.managed-content li:nth-of-type(4) {
  transition-delay: 0.8s;
}
.managed-content li:nth-of-type(5) {
  transition-delay: 1s;
}
.managed-content li:nth-of-type(6) {
  transition-delay: 1.2s;
}
.managed-content li:nth-of-type(7) {
  transition-delay: 1.4s;
}
.managed-content li:nth-of-type(8) {
  transition-delay: 1.6s;
}
.managed-content li:nth-of-type(9) {
  transition-delay: 1.8s;
}
.managed-content li:nth-of-type(10) {
  transition-delay: 2s;
}
.managed-content li:nth-of-type(11) {
  transition-delay: 2.2s;
}
.managed-content li:nth-of-type(12) {
  transition-delay: 2.4s;
}
.managed-content li:nth-of-type(13) {
  transition-delay: 2.6s;
}
.managed-content li:nth-of-type(14) {
  transition-delay: 2.8s;
}
.managed-content li:nth-of-type(15) {
  transition-delay: 3s;
}
.managed-content li:nth-of-type(16) {
  transition-delay: 3.2s;
}
.managed-content li:nth-of-type(17) {
  transition-delay: 3.4s;
}
.managed-content li:nth-of-type(18) {
  transition-delay: 3.6s;
}
.managed-content li:nth-of-type(19) {
  transition-delay: 3.8s;
}
@media (min-width: 768px) {
  .managed-content li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .managed-content li {
    padding-left: 20px;
  }
}
.managed-content li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #9D54D1;
}
@media (min-width: 768px) {
  .managed-content li:before {
    font-size: 16px;
  }
}

.grey-accom-bg {
  position: absolute;
  background-image: url("/img/grey-accom-bg.svg");
  top: 50%;
  left: 0;
  width: 100%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
  height: 2286px;
}

.wellbeing {
  position: relative;
  background-image: url("/img/wellbeing-bg-new.svg");
  width: 100%;
  background-size: 117%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: -1;
  padding: 0px 0 100px 0;
  margin: 0px 0 0px 0;
}
@media (min-width: 992px) {
  .wellbeing {
    display: flex;
    flex-direction: row;
  }
}
.wellbeing .grey-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  .wellbeing .grey-shape {
    width: calc(50% + 100px);
  }
}
@media (min-width: 992px) {
  .wellbeing .grey-shape {
    width: calc(50% + 39px);
  }
}
@media (min-width: 1200px) {
  .wellbeing .grey-shape {
    width: 46%;
  }
}
.wellbeing .grey-shape img {
  width: 100%;
  height: auto;
}
.wellbeing.in-view .wellbeing-heading {
  opacity: 1;
  transform: translateX(0);
}
.wellbeing.in-view li {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .wellbeing .inner {
    display: flex;
    flex-direction: row;
    padding-left: 30%;
  }
}
@media (min-width: 1700px) {
  .wellbeing .inner {
    padding-left: 30%;
  }
}

.wellbeing-heading {
  width: 70%;
  padding: 0 15px 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
  height: 230px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .wellbeing-heading {
    position: absolute;
    width: 20%;
    padding: 0 60px 0 0px;
    margin-bottom: 0px;
    max-width: 500px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .wellbeing-heading {
    width: 30%;
  }
}
.wellbeing-heading .wellbeing-title {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .wellbeing-heading .wellbeing-title {
    width: 100%;
    height: auto;
  }
}

.wellbeing-content {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .wellbeing-content {
    padding: 0 0px;
  }
}
.wellbeing-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #1D1D1B;
  font-size: 23px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .wellbeing-content h4 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .wellbeing-content h4 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .wellbeing-content h4 {
    font-size: 32px;
  }
}
.wellbeing-content p {
  margin-bottom: 20px;
  color: #1D1D1B;
  font-size: 14px;
}
@media (min-width: 768px) {
  .wellbeing-content p {
    font-size: 16px;
  }
}
.wellbeing-content .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (min-width: 992px) {
  .wellbeing-content .inner {
    padding-left: 24%;
  }
}
@media (min-width: 1700px) {
  .wellbeing-content .inner {
    padding-left: 0;
  }
}
.wellbeing-content .wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .wellbeing-content .wrapper {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .wellbeing-content .wrapper .text {
    width: 50%;
    padding-right: 60px;
  }
}
.wellbeing-content .wrapper .text h4.orange {
  color: #9D54D1;
}
.wellbeing-content .wrapper .text p.small {
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 768px) {
  .wellbeing-content .wrapper .text p.small {
    font-size: 14px;
  }
}
.wellbeing-content ul {
  display: block;
  width: 100%;
}
.wellbeing-content li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  color: #1D1D1B;
  font-size: 14px;
  transform: translateY(10px);
  transition: opacity 1.4s, transform 1.4s;
  opacity: 0;
  transition-delay: 3s;
}
.wellbeing-content li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.wellbeing-content li:nth-of-type(2) {
  transition-delay: 0.4s;
}
.wellbeing-content li:nth-of-type(3) {
  transition-delay: 0.6s;
}
.wellbeing-content li:nth-of-type(4) {
  transition-delay: 0.8s;
}
.wellbeing-content li:nth-of-type(5) {
  transition-delay: 1s;
}
.wellbeing-content li:nth-of-type(6) {
  transition-delay: 1.2s;
}
.wellbeing-content li:nth-of-type(7) {
  transition-delay: 1.4s;
}
.wellbeing-content li:nth-of-type(8) {
  transition-delay: 1.6s;
}
.wellbeing-content li:nth-of-type(9) {
  transition-delay: 1.8s;
}
.wellbeing-content li:nth-of-type(10) {
  transition-delay: 2s;
}
.wellbeing-content li:nth-of-type(11) {
  transition-delay: 2.2s;
}
.wellbeing-content li:nth-of-type(12) {
  transition-delay: 2.4s;
}
.wellbeing-content li:nth-of-type(13) {
  transition-delay: 2.6s;
}
.wellbeing-content li:nth-of-type(14) {
  transition-delay: 2.8s;
}
.wellbeing-content li:nth-of-type(15) {
  transition-delay: 3s;
}
.wellbeing-content li:nth-of-type(16) {
  transition-delay: 3.2s;
}
.wellbeing-content li:nth-of-type(17) {
  transition-delay: 3.4s;
}
.wellbeing-content li:nth-of-type(18) {
  transition-delay: 3.6s;
}
.wellbeing-content li:nth-of-type(19) {
  transition-delay: 3.8s;
}
@media (min-width: 768px) {
  .wellbeing-content li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .wellbeing-content li {
    padding-left: 20px;
  }
}
.wellbeing-content li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #9D54D1;
}
@media (min-width: 768px) {
  .wellbeing-content li:before {
    font-size: 16px;
  }
}

.grey-accom-bg {
  position: absolute;
  background-image: url("/img/grey-accom-bg.svg");
  top: 50%;
  left: 0;
  width: 100%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
  height: 2286px;
}

.wellness {
  position: relative;
  background-image: url("/img/wellness-bg.svg");
  width: 100%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
  padding: 120px 0 100px;
  margin: 60px 0 0;
}
@media (min-width: 992px) {
  .wellness {
    display: flex;
    flex-direction: row;
    background-size: cover;
  }
}
.wellness .slider-main-wellness {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  background-color: #2D2D2B;
}
@media (min-width: 768px) {
  .wellness .slider-main-wellness {
    height: auto;
  }
}
@media (min-width: 992px) {
  .wellness .slider-main-wellness {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .wellness .slider-main-wellness {
    height: 550px;
  }
}
.wellness .slider-main-wellness .flex-control-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  right: 0;
  bottom: 20px;
}
@media (min-width: 992px) {
  .wellness .slider-main-wellness .flex-control-nav {
    width: 30%;
    padding-left: 30px;
    right: 0;
    justify-content: flex-start;
  }
}
.wellness .slider-content {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .wellness .slider-content {
    display: flex;
    flex-direction: row;
  }
}
.wellness .slider-content .image {
  width: 100%;
  background-size: cover;
  height: 350px;
}
@media (min-width: 992px) {
  .wellness .slider-content .image {
    width: 70%;
    height: 100%;
  }
}
.wellness .slider-content .text-content {
  background-color: #2D2D2B;
  padding: 30px;
}
.wellness .slider-content .text-content h4 {
  padding-left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .wellness .slider-content .text-content {
    width: 30%;
  }
}
.wellness .grey-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  .wellness .grey-shape {
    width: calc(50% + 100px);
  }
}
@media (min-width: 992px) {
  .wellness .grey-shape {
    width: calc(50% + 39px);
  }
}
@media (min-width: 1200px) {
  .wellness .grey-shape {
    width: 46%;
  }
}
.wellness .grey-shape img {
  width: 100%;
  height: auto;
}
.wellness.in-view .wellness-heading {
  opacity: 1;
  transform: translateX(0);
}
.wellness.in-view li {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .wellness .inner {
    display: flex;
    flex-direction: row;
  }
}
.wellness-heading {
  width: 70%;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s;
  transform: translateX(-40px);
  transition-delay: 0s;
  margin-bottom: 60px;
  z-index: 3;
}
@media (min-width: 992px) {
  .wellness-heading {
    position: absolute;
    width: 20%;
    padding: 0 60px 0 0;
    margin-bottom: 0;
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .wellness-heading {
    width: 280px;
    padding: 0 0 0 100px;
  }
}
.wellness-heading .wellness-title {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .wellness-heading .wellness-title {
    width: 100%;
    height: auto;
  }
}

.wellness-content {
  padding: 0 15px;
  position: relative;
}
.wellness-content:before {
  content: "";
  background-image: url("/img/headings/heading-wellness.svg");
  width: 100px;
  position: absolute;
  left: 30px;
  top: 0;
  z-index: 3;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .wellness-content {
    padding: 0;
  }
  .wellness-content:before {
    content: "";
    background-image: url("/img/headings/heading-wellness.svg");
    width: 240px;
    position: absolute;
    left: 30px;
    top: 0;
    z-index: 3;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .wellness-content:before {
    content: "";
    background-image: url("/img/headings/heading-wellness.svg");
    width: 240px;
    position: absolute;
    left: -130px;
    top: 0;
    z-index: 3;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.wellness-content h4 {
  margin-bottom: 20px;
  font-family: titling-gothic-fb-compressed, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  color: #1D1D1B;
  font-size: 23px;
  text-transform: uppercase;
  padding-left: 130px;
}
@media (min-width: 768px) {
  .wellness-content h4 {
    margin-bottom: 50px;
    font-size: 26px;
    padding-left: 220px;
  }
}
@media (min-width: 992px) {
  .wellness-content h4 {
    font-size: 28px;
    width: 80%;
    padding-left: 330px;
  }
}
@media (min-width: 1200px) {
  .wellness-content h4 {
    font-size: 32px;
    padding-left: 200px;
    width: 70%;
  }
}
.wellness-content h4.orange {
  color: #9D54D1;
}
.wellness-content p {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 14px;
}
@media (min-width: 768px) {
  .wellness-content p {
    font-size: 16px;
  }
}
.wellness-content .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (min-width: 992px) {
  .wellness-content .inner {
    padding-left: 24%;
  }
}
@media (min-width: 1700px) {
  .wellness-content .inner {
    padding-left: 0;
  }
}
.wellness-content .wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .wellness-content .wrapper {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .wellness-content .wrapper .text {
    width: 50%;
    padding-right: 60px;
  }
}
.wellness-content .wrapper .text h4.orange {
  color: #1D1D1B;
}
.wellness-content .wrapper .text p.small {
  font-weight: 300;
  font-size: 12px;
}
@media (min-width: 768px) {
  .wellness-content .wrapper .text p.small {
    font-size: 14px;
  }
}
.video {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .video {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .video {
    padding-top: 92px;
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .video {
    height: 100vh;
  }
}
.video:before {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  width: 1px;
  height: 50%;
  top: 0;
  background: linear-gradient(to bottom, #333 0%, transparent 100%);
  z-index: 99;
  width: 100%;
}

.video-control {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.video-control img {
  width: 56px;
  height: 56px;
}
@media (min-width: 992px) {
  .video-control img {
    width: 97px;
    height: 97px;
  }
}
.video-control.playing .video-control-play {
  display: none;
}

.sound-icon {
  z-index: 30;
  width: 100px;
  height: 100px;
  background-color: transparent;
  position: absolute;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .sound-icon {
    bottom: unset;
    top: 60px;
    left: 20px;
  }
}

.mute-video {
  background-size: 32px;
  border: 0;
  width: 32px;
  height: 32px;
  background-color: #1D1D1B;
}
.mute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f028";
  color: #FFFFFF;
}

.unmute-video {
  background: transparent;
  background-size: 32px;
  background-color: #1D1D1B;
}
.unmute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f6a9";
  color: #FFFFFF;
}

.banner-video {
  position: relative;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    height: 360px;
    transform: translateX(-50%) translateY(-50%);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .banner-video {
    height: 100%;
  }
}
.banner-video .play {
  position: absolute;
  width: 54px !important;
  height: 54px !important;
  cursor: pointer;
  background-image: url("../../img/icons/play.svg");
  background-size: cover;
}
