@charset "UTF-8";
@font-face {
  font-family: "Helvetica Neue Light";
  src: url("../assets/fonts/HelveticaNeueLight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Medium";
  src: url("../assets/fonts/HelveticaNeueMedium.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("../assets/fonts/HelveticaNeueBold.ttf");
  font-weight: normal;
  font-style: normal;
}
/* 
    project scrollign style 

    .properties_slider{
        // width: 100%;
        // overflow-x: scroll;
        // padding-bottom: 70px;
        // .track{
        //     width: calc( (7 * 27%) + 40px );
        // }
        // .tile{
        //     width: 25%;
        //     margin-right: 40px;
        //     &:last-of-type{
        //         margin-right: 0;
        //     }
        // }
    }

    max-width: 600px

    // padding-bottom: 50px;
        // .track{
        //     width: calc( (7 * 70%) + 20px );
        // }
        // .tile{
        //     width: 70%;
        //     margin-right: 20px;
        // }


    //horizontal scroll
    const postScroll = document.getElementById("properties_slider");

    let scrollingHorizontally = true;

    postScroll.addEventListener("wheel", (event) => {
        if (scrollingHorizontally) {
            event.preventDefault(); // Prevent default vertical scrolling

            postScroll.scrollBy({
            left: event.deltaY > 0 ? 20 : -20, // Moves right when scrolling down, left when scrolling up
            });

            // Check if the user has reached the end or start of the slider
            if (
            postScroll.scrollLeft <= 0 || 
            postScroll.scrollLeft >= postScroll.scrollWidth - postScroll.clientWidth
            ) {
            scrollingHorizontally = false;
            postScroll.style.overflowY = "auto";
            }
        } 
        else {
            return true; // Allow normal vertical scrolling
        }
    });
*/
/*------------------------------------*\
RESET
\*------------------------------------*/
html, body, div, span, 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, samp,
small, strike, strong, sub, sup, tt, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
section, article, aside, footer, header, hgroup, nav, .h6, .h5, .h4, .h3, .h2, .h1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  transition: 0.2s ease-in-out;
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
}

strong {
  font-weight: bold;
}

b {
  font-weight: 400;
}

i {
  font-style: italic;
}

button {
  border: none;
  background: none;
}

textarea {
  resize: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}

div::-webkit-scrollbar {
  width: 0 !important;
}

div {
  overflow: -moz-scrollbars-none;
}

div {
  -ms-overflow-style: none;
}

button:focus {
  outline: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus, input[type=checkbox]:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

select:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

div.iframe iframe {
  position: absolute;
  top: -15px;
  left: 0;
  height: 140.5vw;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  -webkit-appearance: none;
}

.img-fluid {
  max-width: 100%;
}

/* defaults end */
html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue Light";
  font-style: normal;
  font-size: 20px;
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 160px;
}
body.no-scroll {
  overflow: hidden;
}

.hamburger {
  padding: 15px 10px;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: #000;
  height: 3px;
  border-radius: 0px;
  width: 100%;
}

.hamburger-inner:before {
  top: -8px;
}

.hamburger-inner:after {
  bottom: -8px;
}

.hamburger-box {
  width: 30px;
  height: 18px;
  margin-top: 6px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

/* PAGE STYLES */
h1 {
  font-family: "Helvetica Neue Bold";
  font-size: 100px;
  line-height: 1;
  margin-bottom: 30px;
}
h1.large {
  font-size: 130px;
}

h2 {
  font-family: "Helvetica Neue Bold";
  font-size: 75px;
  line-height: 1.1;
  margin-bottom: 25px;
}

h3 {
  font-family: "Helvetica Neue Bold";
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
}
h3.large {
  font-size: 65px;
}

h4 {
  font-family: "Helvetica Neue Light";
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 25px;
}
h4 b {
  font-family: "Helvetica Neue Bold";
}

h5 {
  font-family: "Helvetica Neue Light";
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 25px;
}

h6 {
  font-family: "Helvetica Neue Bold";
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

sup.tm {
  font-size: 0.4em;
  top: -1.5em;
}

p {
  line-height: 1.5;
}
p b {
  font-weight: 700;
}

p.large {
  font-size: 30px;
}

.text-blue {
  color: #1300FF;
}

.mute_container {
  position: absolute;
  width: 45px;
  bottom: 30px;
  right: 2%;
  cursor: pointer;
  z-index: 5;
}
.mute_container img {
  width: 100%;
}
.mute_container .mute {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
  z-index: 2;
}
.mute_container.unmuted .unmute {
  opacity: 0;
}
.mute_container.unmuted .mute {
  opacity: 1;
  z-index: 1;
}

.my_btn {
  position: relative;
  font-family: "Helvetica Neue Bold";
  line-height: 40px;
  padding: 0 30px;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
}
.my_btn.lowercase {
  text-transform: lowercase;
}
.my_btn::before, .my_btn::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 12px;
  transition: all 0.3s;
}
.my_btn::before {
  left: 0;
  background: url("../assets/img/left_braket.svg") no-repeat left;
  background-size: contain;
}
.my_btn::after {
  right: 0;
  background: url("../assets/img/right_braket.svg") no-repeat right;
  background-size: contain;
}
.my_btn:hover::before {
  left: -5px;
}
.my_btn:hover::after {
  right: -5px;
}

.policy_popup {
  position: fixed;
  top: 80px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 60px 20px;
  background: #fff;
  z-index: 11;
  display: none;
  height: calc(100vh - 80px);
}
.policy_popup h3 {
  margin-bottom: 40px;
}
.policy_popup h2, .policy_popup h4, .policy_popup p {
  text-align: left;
  margin-bottom: 30px;
}
.policy_popup p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000;
}
.policy_popup ul {
  list-style-type: disc;
  padding-left: 20px;
}
.policy_popup ul li {
  margin-bottom: 10px;
}
.policy_popup .main_logo {
  width: 220px;
  max-width: 50%;
  margin-bottom: 30px;
  height: 90px;
}
.policy_popup .inner_content {
  max-height: calc(100% - 130px);
  overflow-y: scroll;
  max-width: 1350px;
  padding: 10px 20px;
  margin: 0 auto;
}
.policy_popup .inner_content::-webkit-scrollbar {
  width: 0;
  height: 8px;
}
.policy_popup .inner_content::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 9px;
}
.policy_popup .inner_content::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.policy_popup .inner_content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 9px;
  box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}
.policy_popup .small_logo {
  margin-top: 30px;
}
.policy_popup .copyright {
  padding-top: 30px;
}
.policy_popup .copyright p {
  text-align: center;
}
.policy_popup .close_icon {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 39px;
  cursor: pointer;
}

.show_message {
  text-decoration: underline;
  cursor: pointer;
}

.cookies_message {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
}
.cookies_message .small_logo {
  text-align: left;
  width: 10%;
  padding: 0 40px;
}
.cookies_message .small_logo img {
  height: 60px;
  vertical-align: middle;
}
.cookies_message .text {
  width: 80%;
}
.cookies_message .text p {
  font-size: 14px;
  max-width: 1300px;
  text-align: left;
}
.cookies_message .got_it {
  width: 10%;
  padding: 0 40px;
}
.cookies_message .got_it h3 {
  text-align: right;
}
.cookies_message.accepted {
  display: none;
}

.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .arrow_link .arrow {
    transition: 0.3s all;
    transform: translate(-5px, 0);
  }
  .arrow_link:hover .arrow {
    transform: translate(5px, 0);
  }
}
.header {
  position: fixed;
  padding-top: 50px;
  padding-bottom: 20px;
  top: 0;
  background: transparent;
  background: #fff;
  z-index: 101;
  transition: all 0.4s ease-in-out;
}
.header.loading {
  background: transparent !important;
  filter: brightness(0) invert(1);
}
.header .logo {
  width: 450px;
}
.header .main_logo {
  width: 80px;
}
.header .small_logo {
  width: 30px;
}
.header .logo_container {
  position: relative;
  transition: 0.4s all;
}
.header .logo_container .small_logo {
  position: absolute;
  z-index: 2;
  opacity: 0;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.header .menu ul.main_menu {
  text-align: right;
  display: inline-block;
}
.header .menu ul.main_menu li {
  position: relative;
  display: inline-block;
  font-family: "Helvetica Neue Medium";
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
  vertical-align: middle;
  margin: 0 20px;
  padding: 0 17px;
}
.header .menu ul.main_menu li:last-of-type {
  margin-right: 0;
}
.header .menu ul.main_menu li::before, .header .menu ul.main_menu li::after {
  position: absolute;
  content: "";
  height: 200%;
  width: 12px;
  transition: all 0.3s;
  top: 50%;
  transform: translate(0, -45%);
  opacity: 0;
}
.header .menu ul.main_menu li::before {
  left: -5px;
  background: url("../assets/img/left_braket.svg") no-repeat left;
  background-size: contain;
}
.header .menu ul.main_menu li::after {
  right: -5px;
  background: url("../assets/img/right_braket.svg") no-repeat right;
  background-size: contain;
}
.header .menu ul.main_menu li:hover::before, .header .menu ul.main_menu li:hover::after, .header .menu ul.main_menu li.current-menu-item::before, .header .menu ul.main_menu li.current-menu-item::after {
  opacity: 1;
}
.header.scrolled {
  padding-top: 20px;
  transition: all 0.4s;
  background: #fff !important;
  -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .header.scrolled .logo_container {
    height: 60px;
  }
  .header.scrolled .logo_container .main_logo {
    opacity: 0;
  }
  .header.scrolled .logo_container .small_logo {
    opacity: 1;
  }
  body.page-template-home-page .header {
    background: transparent;
  }
}
form .input_block {
  width: 100%;
  margin-bottom: 20px;
}
form .input_block .name {
  display: inline-block;
  vertical-align: bottom;
  width: 70px;
  font-size: 20px;
  color: #fff;
}
form .input_block .field {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
}
form .input_block .field input {
  width: 100%;
  font-size: 20px;
  line-height: 45px;
  color: #ccc;
  background: transparent;
  border: none;
  border-bottom: 1px solid #BCBCBC;
}
form .input_block .field input::placeholder {
  color: #000;
}
form .input_block textarea {
  border: 1px solid #BCBCBC;
  font-size: 20px;
  line-height: 1.2;
  padding: 20px;
  width: 100%;
}
form .input_block textarea::placeholder {
  color: #000;
}
form .checkbox {
  display: inline-block;
  position: relative;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: left;
  margin-right: 0px;
}
form .checkbox .wpcf7-list-item-label {
  display: none;
}
form .checkbox .wpcf7-form-control-wrap {
  position: absolute;
  z-index: 10;
}
form .checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbo {
  margin: 0;
}
form .checkbox .wpcf7-not-valid-tip {
  position: absolute;
  width: 200px;
  bottom: -45px;
}
form .checkbox p {
  font-size: 10px;
}
form .checkbox input {
  appearance: auto;
  width: 25px;
  height: 25px;
  opacity: 0;
}
form .checkbox span {
  margin: 0;
}
form .checkbox label {
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  text-transform: none;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0.4px;
}
form .checkbox label:before {
  content: "";
  position: absolute;
  top: 5px;
  display: block;
  left: -5px;
  width: 22px;
  height: 22px;
  border: 1px solid #BCBCBC;
  margin-left: 5px;
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  background: transparent;
  text-align: center;
  line-height: 21px;
  font-size: 16px;
  color: #000;
  border-radius: 0;
  background: transparent;
}
form .checkbox.selected label:before {
  content: "✓";
  color: #000;
}
form .my_btn {
  transition: font-size 0.3s;
}
form .wpcf7-not-valid-tip {
  font-size: 12px;
  position: absolute;
}
form .wpcf7-response-output {
  font-size: 14px;
  padding: 15px;
  color: #000;
}
form:not(.invalid) .wpcf7-not-valid-tip {
  display: none;
}

.section-margin-large {
  margin-top: 150px;
  margin-bottom: 150px;
}

.section-margin {
  margin-top: 110px;
  margin-bottom: 110px;
}

.full-width-left-padding {
  padding-left: 60px;
}

.full-width-right-padding {
  padding-right: 60px;
}

.scroll_wrapper {
  max-width: 100%;
  overflow-x: scroll;
  padding-bottom: 40px;
  display: flex;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  -webkit-overflow-scrolling: auto;
}
.scroll_wrapper .row {
  display: flex;
  flex-wrap: nowrap;
  width: calc(2 * var(--col-width) + 20px);
}
.scroll_wrapper .post {
  margin-bottom: 0;
}
.scroll_wrapper::-webkit-scrollbar {
  width: auto !important;
  height: 5px;
}
.scroll_wrapper::-webkit-scrollbar-track {
  background: #BCBCBC !important;
  border-left: 1px solid #fff;
  border: 2px solid white;
  background-clip: content-box !important;
  border-right: 1px solid #fff;
  background-clip: padding-box;
}
.scroll_wrapper::-webkit-scrollbar-thumb {
  background: #000 !important;
  cursor: pointer;
}
.scroll_wrapper::-webkit-scrollbar-thumb:hover {
  background: #000 !important;
}

.video_wrapper {
  position: relative;
  background: #efefef;
}
.video_wrapper .overlay_link {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.news_posts .post .ratio {
  margin-bottom: 20px;
}
.news_posts .post p {
  margin-bottom: 10px;
}
.news_posts .post h5 {
  line-height: 1.3;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
}
.news_posts .post .title_container {
  position: relative;
}
.news_posts .post .title_container .date {
  font-size: 20px;
  color: #1300FF;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 15px;
}
.news_posts .post .title_container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
  background: url("../assets/img/reserve_direct/ig_icon.jpg") center;
  background-size: cover;
}

.background_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 100%;
  z-index: -1;
  min-width: 177.7777777778vh;
}
.background_video iframe {
  left: 50% !important;
  transform: translate(-50%, 0);
}

.loader_overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background: #000;
}
.loader_overlay h1 {
  position: absolute;
  padding: 3%;
  bottom: 0;
  font-family: "Helvetica Neue Light";
  font-size: 120px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.loader_overlay .loader_title {
  height: calc(2em + 6%);
}
.loader_overlay .loader_title span {
  display: none;
}
.loader_overlay.shown {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  left: auto;
}
.loader_overlay.shown .background_video {
  position: relative;
}
.loader_overlay.shown .loader_title span {
  display: inline-block;
}

/* infinite loop scroll */
.infinite-scroll-container {
  background: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infinite-scroll-container .scroll-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 20px;
}
.infinite-scroll-container .scroll-content .item_scrolling {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 30%;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.infinite-scroll-container .scroll-content .item_scrolling div {
  width: 100%;
}

/* infinite loop scroll END */
/* Project tiles */
.scrolling_tiles .slick-track {
  display: flex;
  align-items: stretch;
}
.scrolling_tiles .slick-track .tile {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: auto;
}
.scrolling_tiles .slick-track .video_wrapper {
  width: 100%;
}

.scroll_wrapper_wrapper {
  position: relative;
}
.scroll_wrapper_wrapper::before, .scroll_wrapper_wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 10px;
  background: #fff;
  z-index: 2;
}
.scroll_wrapper_wrapper::after {
  left: auto;
  right: 0;
}
.scroll_wrapper_wrapper .arrow_left,
.scroll_wrapper_wrapper .arrow_right {
  position: absolute;
  left: -15px;
  bottom: -18px;
  width: 40px;
  height: 40px;
  background: url("../assets/img/arrow_left.svg") no-repeat center #fff;
  background-size: 100% auto;
  z-index: 3;
  cursor: pointer;
}
.scroll_wrapper_wrapper .arrow_right {
  left: auto;
  right: -20px;
  background: url("../assets/img/arrow_right.svg") no-repeat center #fff;
  background-size: 100% auto;
}

.coming_soon_slider_wrapper {
  display: flex;
}
.coming_soon_slider_wrapper .slider_arrow {
  display: none;
}
.coming_soon_slider_wrapper .type {
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.coming_soon_slider_wrapper .type .tile {
  width: calc(19vw + 50px);
  margin-right: 20px;
}

.opening_hours span {
  display: inline-block;
}
.opening_hours .date {
  min-width: 6.5em;
}

#place .project {
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid #BCBCBC;
}
#place .project:hover {
  border-bottom: 1px solid #000;
}
#place .stats .item span.number {
  display: inline-block;
  font-family: "Helvetica Neue Bold";
  font-size: 120px;
  color: #000;
  margin-bottom: 5px;
}
#place .stats .item span.text {
  display: inline-block;
  font-size: 40px;
  padding-left: 10px;
  line-height: 1.1;
}

#place .coming_soon_slider_wrapper {
  position: relative;
  /* the slides */
  /* the parent */
}
#place .coming_soon_slider_wrapper .slick-slide {
  margin: 0 10px;
}
#place .coming_soon_slider_wrapper .slick-list {
  margin: 0 -10px;
}
#place .coming_soon_slider_wrapper .slick-list.draggable {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
#place .coming_soon_slider_wrapper .slick-dots {
  border-bottom: 1px solid #BCBCBC;
  display: flex;
  padding-top: 70px;
  margin-left: 40px;
  margin-right: 40px;
}
#place .coming_soon_slider_wrapper .slick-dots li {
  height: 3px;
  background: transparent;
  cursor: pointer;
  flex-grow: 1;
  transform: translate(0, 2px);
}
#place .coming_soon_slider_wrapper .slick-dots li button {
  font-size: 0;
  color: transparent;
}
#place .coming_soon_slider_wrapper .slick-dots li.slick-active {
  background: #000;
}
#place .coming_soon_slider_wrapper .slider_arrow {
  position: absolute;
  bottom: -25px;
  cursor: pointer;
  width: 50px;
}
#place .coming_soon_slider_wrapper .slider_arrow.arrow_left {
  left: -15px;
}
#place .coming_soon_slider_wrapper .slider_arrow.arrow_right {
  right: -15px;
}
#place .project {
  border-bottom: none;
}
#place .project:hover {
  border-bottom: none;
}

#project .stats .item {
  margin-bottom: 30px;
  line-height: 1.3;
}
#project .stats .item h6 {
  padding-top: 5px;
}

#team .team_members .img {
  position: relative;
  width: 100%;
  aspect-ratio: 35/43;
  margin-bottom: 50px;
}
#team .team_members h3 {
  margin-bottom: 10px;
}
#team .team_members h5 {
  font-family: "Helvetica Neue Bold";
}
#team .team_members {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 60px;
}
@media (min-width: 600px) {
  #team {
    /* Stagger effect for every second item in each row */
  }
  #team .team_members {
    grid-template-columns: repeat(2, 1fr);
  }
  #team .team_members .team_member:nth-child(2n) {
    margin-top: 100px;
  }
  #team .team_members .team_member:nth-of-type(2) {
    margin-top: 300px;
  }
  #team .team_members .team_member:nth-of-type(3),
  #team .team_members .team_member:nth-of-type(5),
  #team .team_members .team_member:nth-of-type(7) {
    margin-top: -200px;
  }
}

#news .year {
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid #BCBCBC;
}
#news .year:hover {
  border-bottom: 1px solid #000;
}
#news .hidden_post {
  display: none;
}
#news .load_more {
  cursor: pointer;
}
#news .load_more h6 {
  color: #BCBCBC;
  padding-left: 40px;
  transition: all 0.3s;
  position: relative;
}
#news .load_more h6::before, #news .load_more h6::after {
  content: "";
  position: absolute;
  background: #BCBCBC;
}
#news .load_more h6::before {
  top: -4px;
  left: 12px;
  height: 22px;
  width: 4px;
}
#news .load_more h6::after {
  top: 6px;
  left: 3px;
  width: 22px;
  height: 4px;
}
#news .load_more h6.open:before {
  transform: rotate(90deg);
}

@media (min-width: 2100px) {
  #contact .map_wrapper {
    margin-bottom: 60px;
  }
}
@media (min-width: 2300px) {
  #contact .map_wrapper {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  #place #main_projects .scroll_wrapper {
    padding-bottom: 0;
    overflow-x: clip;
  }
  #home #news_feed .scroll_wrapper {
    padding-bottom: 0;
    overflow-x: clip;
  }
  #home #place .coming_soon_slider_wrapper .type .tile {
    width: calc(24vw + 50px);
  }
  .img-col {
    width: 29% !important;
  }
}
#footer {
  font-size: 18px;
  padding-bottom: 60px;
}
#footer .footer_menu li {
  width: 100%;
  font-family: "Helvetica Neue Bold";
  font-size: 15px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 25px;
}
#footer .disclaimer {
  font-size: 12px;
  color: #4B5B46;
}
#footer .go_to_top img {
  margin-bottom: 5px;
}
#footer .go_to_top p {
  font-size: 10px;
  text-transform: uppercase;
}

/* FLOORPLANS */
#floorplans .go_to_top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  border: 2px solid #fff;
}
#floorplans .go_to_top .arrow {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}
#floorplans .masthead {
  background: url("../img/floorplans/poster.jpg") center bottom;
  background-size: cover;
}
#floorplans .masthead .logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 300px;
}
#floorplans .checkbox,
#floorplans .radio {
  display: inline-block;
  position: relative;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: left;
  margin-right: 0px;
}
#floorplans .checkbox .home-icon,
#floorplans .radio .home-icon {
  width: 210px;
  display: block;
  margin-bottom: 15px;
}
#floorplans .checkbox .soon,
#floorplans .radio .soon {
  filter: grayscale(1);
  opacity: 0.6;
}
#floorplans .checkbox input,
#floorplans .radio input {
  position: absolute;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 30px;
}
#floorplans .checkbox label,
#floorplans .radio label {
  padding-left: 70px;
  position: relative;
  cursor: pointer;
  text-transform: none;
  font-size: 70px;
  font-family: "Helvetica Neue Bold";
}
#floorplans .checkbox label:before,
#floorplans .radio label:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  left: -5px;
  width: 45px;
  height: 45px;
  transform: translate(0, -50%);
  margin-left: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #454343;
  border-image: initial;
  background: transparent;
  text-align: center;
  line-height: 42px;
  font-size: 36px;
}
#floorplans .checkbox input[type=radio]:checked + label,
#floorplans .checkbox input[type=checkbox]:checked + label,
#floorplans .radio input[type=radio]:checked + label,
#floorplans .radio input[type=checkbox]:checked + label {
  background: transparent;
  color: #000;
}
#floorplans .checkbox input[type=radio]:checked + label:before,
#floorplans .checkbox input[type=checkbox]:checked + label:before,
#floorplans .radio input[type=radio]:checked + label:before,
#floorplans .radio input[type=checkbox]:checked + label:before {
  content: "✓";
}
#floorplans .checkbox.missing label:before,
#floorplans .radio.missing label:before {
  border-color: red;
}
#floorplans select {
  width: 100%;
  padding: 15px;
  font-size: 26px;
  color: #000;
  background: url("../assets/img/arrow_down.svg") no-repeat 95% center;
  border: 1px solid #000;
}
#floorplans select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 1px;
  font-size: 16px;
}
#floorplans .type_selector h4 {
  font-size: 24px;
  text-decoration: underline;
  cursor: pointer;
}
#floorplans .type_selector .select_container {
  position: relative;
}
#floorplans .type_selector .select_container img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(180deg);
}
#floorplans .type_selector .select_container select {
  width: 100%;
  border: 1px solid #999;
  font-family: "Akkurat";
  padding: 5px 15px;
  cursor: pointer;
  background: url("../img/select_arrow.png") no-repeat right center;
  background-size: 45px;
}
#floorplans .filters .selectors .box {
  cursor: pointer;
  display: inline-block;
}
#floorplans .filters .selectors .box p {
  font-size: 24px;
  color: #000;
}
#floorplans .floorplan_box.hidden {
  display: none;
}
#floorplans .dark {
  font-family: "Akkurat";
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#floorplans .filters {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: center;
}
#floorplans .filters .fsslider > .fssel-left,
#floorplans .filters .fsslider > .fssel-right,
#floorplans .filters .fsslider > .fscaret {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
}
#floorplans .filters .fsslider > .fsfull-value,
#floorplans .filters .fsslider > .fssel-value {
  background: #e8e8e8;
}
#floorplans .filters .fsslider > .fssel-value {
  background: #003057;
  height: 2px;
  margin-top: -1px;
}
#floorplans .filters .fsslider > .fscaret {
  background: #000;
}
#floorplans .filters .filter p.pe-3 .icon {
  margin-right: 10px;
}
#floorplans .filters .filter p {
  margin-bottom: 8px;
}
#floorplans .filters .filter .range_slider {
  margin-top: 5px;
}
#floorplans .filters .filter .input_container {
  position: relative;
  display: inline-block;
}
#floorplans .filters .filter .input_container.price {
  width: 80px;
  padding-left: 12px;
}
#floorplans .filters .filter .input_container.price:after {
  position: absolute;
  content: "$";
  left: 0;
  top: 0;
  font-size: 24px;
}
#floorplans .filters .filter .input_container.size {
  width: 80px;
  padding-right: 20px;
  transform: translate(-25%, 0);
}
#floorplans .filters .filter .input_container.size input {
  text-align: right !important;
}
#floorplans .filters .filter .input_container.size:after {
  position: absolute;
  content: "sq.ft.";
  right: 0;
  top: 0;
  transform: translate(65%, 0);
  font-size: 24px;
}
#floorplans .filters .filter input,
#floorplans .filters .filter select {
  display: inline-block;
  line-height: 25px;
  text-align: center;
  font-family: "Helvetica Neue Light";
  font-size: 24px;
  margin-bottom: 0;
  width: 100%;
  color: #000;
  position: relative;
}
@supports (-webkit-touch-callout: none) {
  #floorplans .filters .filter .col-6 .input_container input {
    font-size: 18px;
    padding-top: 0;
    padding-bottom: 0;
  }
  #floorplans .filters .filter .col-6 .input_container:after {
    font-size: 20px;
  }
}
#floorplans .filters .filter p {
  display: inline-block;
  list-style: none;
  line-height: 1;
}
#floorplans .filters .filter .dash {
  width: 100%;
  height: 2px;
  background: #000;
}
#floorplans .filters .filter .selectors {
  margin-top: 3px;
}
#floorplans .filters .filter .selectors .box {
  display: inline-block;
  width: auto;
  padding: 5px 20px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.4s;
}
#floorplans .filters .filter .selectors .box.active {
  background: #000;
}
#floorplans .filters .filter .selectors .box.active p {
  color: #fff;
}
#floorplans .filters .filter .selectors .box.active.load_style {
  background: #fff;
}
#floorplans .filters .filter .selectors .box.active.load_style p {
  color: #000;
}
#floorplans .filters .filter .selectors .box:nth-of-type(5) {
  margin-right: 0;
}
#floorplans .box {
  position: relative;
  max-width: 100%;
}
#floorplans .box .details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.4s;
}
#floorplans .box .details h3 {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  color: #fff;
}
#floorplans .box:hover .details {
  opacity: 1;
}
#floorplans .box img:not(.reserved_img) {
  height: 380px;
  margin: 0 auto;
  display: block;
}
#floorplans .box .reserved_img {
  height: auto;
}
#floorplans .controlls {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}
#floorplans .controlls button {
  font-family: "Akkurat";
  font-size: 20px;
  text-transform: uppercase;
  line-height: 60px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  cursor: pointer;
}
#floorplans .controlls button.active {
  font-size: 24px;
  border-bottom: 2px solid #000;
}
#floorplans .container .box {
  cursor: pointer;
  padding: 40px;
  margin-bottom: 20px;
  border: 1px solid #454343;
}
#floorplans .container .my_slider {
  padding-bottom: 50px;
  /* the slides */
  /* the parent */
}
#floorplans .container .my_slider .slick-slide {
  margin: 0 27px;
}
#floorplans .container .my_slider .slick-list {
  margin: 0 -27px;
}
#floorplans.floorplan_details .masthead {
  background: url("../img/floorplans/individual_poster.jpg") center;
  background-size: cover;
}
#floorplans.floorplan_details .floorplan_img {
  max-height: 800px;
  margin: 0 auto;
}
#floorplans.floorplan_details .gallery_slider_container {
  position: relative;
}
#floorplans.floorplan_details .gallery_slider_container .slick-dots {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  text-align: center;
}
#floorplans.floorplan_details .gallery_slider_container .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
#floorplans.floorplan_details .gallery_slider_container .slick-dots li button {
  color: rgba(0, 0, 0, 0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
}
#floorplans.floorplan_details .gallery_slider_container .slick-dots li.slick-active button {
  background: #000;
}
#floorplans.floorplan_details .gallery_slider_container .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  width: 26px;
  height: 30px;
  color: rgba(0, 0, 0, 0);
  z-index: 100;
}
#floorplans.floorplan_details .gallery_slider_container .slick-arrow.slick-prev {
  background: url("../img/arrow_left_dark.png");
  background-size: contain;
  left: -40px;
}
#floorplans.floorplan_details .gallery_slider_container .slick-arrow.slick-next {
  background: url("../img/arrow_right_dark.png");
  background-size: contain;
  right: -40px;
}
#floorplans.floorplan_details .gallery_slider_container .arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
#floorplans.floorplan_details .gallery_slider_container .arrow.arrow_left {
  left: -40px;
}
#floorplans.floorplan_details .gallery_slider_container .arrow.arrow_right {
  right: -40px;
}
#floorplans.floorplan_details .controlls button.no_use {
  border-bottom: 2px solid transparent;
  pointer-events: none;
}
#floorplans.floorplan_details .controlls .download img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
#floorplans.floorplan_details .controlls .download p.small {
  vertical-align: middle;
  display: inline-block;
  font-family: "Akkurat";
  font-size: 12px;
  text-transform: uppercase;
}
#floorplans.floorplan_details .title h1 {
  position: relative;
  font-size: 150px;
  letter-spacing: 10px;
  display: inline-block;
  text-transform: uppercase;
}
#floorplans.floorplan_details .title h1::after {
  content: "";
  position: absolute;
  height: 60%;
  width: 1px;
  right: -30px;
  top: 50%;
  transform: translate(0, -50%);
  background: #000;
}
#floorplans.floorplan_details .title h3 {
  font-size: 55px;
  display: inline-block;
}
#floorplans.floorplan_details .title p {
  font-size: 40px;
  text-transform: uppercase;
}
#floorplans.floorplan_details .title p span {
  font-size: 40px;
}
#floorplans .suite_tile .img_container {
  position: relative;
}
#floorplans .suite_tile .img_container .tagline {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 30px;
  font-family: "Helvetica Neue Bold";
  font-size: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}
#floorplans .suite_tile .stats {
  display: flex;
  padding: 35px 0;
  border-left: 1px solid #BCBCBC;
  border-right: 1px solid #BCBCBC;
  border-bottom: 1px solid #BCBCBC;
}
#floorplans .suite_tile .stats .name {
  width: 62%;
  padding: 0 35px;
  border-right: 1px solid #BCBCBC;
}
#floorplans .suite_tile .stats .info {
  width: 38%;
  padding: 0 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#floorplans .suite_tile .stats .info .row {
  flex-grow: 1;
}
#floorplans .suite_tile .stats .info h6 {
  margin-bottom: 0;
}
#floorplans .suite_tile .stats .info h6 .small {
  font-size: 10px;
}

/* FLOORPLANS END */
/* ---------------- SUITES -------------------------- */
#suites .units_table {
  width: 100%;
}
#suites .units_table img {
  transition: all 0.3s;
}
#suites .units_table tr.heading {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  text-transform: uppercase;
}
#suites .units_table tr td {
  font-size: 22px;
  padding: 25px 5px;
  line-height: 1.1;
  text-align: center;
}
#suites .units_table tr td a {
  text-decoration: underline;
}
#suites .units_table tr td span.small {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  text-transform: none;
}
#suites .units_table tr td:first-of-type {
  padding-right: 30px;
}
#suites .units_table tbody tr {
  transition: 0.3s all;
}
#suites .units_table tbody tr:nth-of-type(even) {
  background: #ECECEC;
}
#suites .units_table tbody tr:hover {
  background: #1300FF;
  cursor: pointer;
  color: #fff;
}
#suites .units_table tbody tr:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* ---------------- SUITES END -------------------------- */
.grecaptcha-badge {
  display: none !important;
}

@media (max-width: 1700px) {
  h1 {
    font-size: 95px;
  }
  h1.large {
    font-size: 110px;
  }
  h2 {
    font-size: 70px;
  }
  h3 {
    font-size: 46px;
  }
  h3.large {
    font-size: 50px;
  }
  h4 {
    font-size: 38px;
  }
  .header .menu ul.main_menu li {
    margin: 0 25px;
  }
  .header .menu ul.main_menu li.my_btn {
    font-size: 18px;
  }
  #place .stats .item span.number {
    font-size: 110px;
  }
  #place .stats .item span.text {
    font-size: 36px;
  }
  .footer .footer_menu li {
    margin-right: 50px;
  }
}
@media (max-width: 1500px) {
  body {
    padding-top: 120px;
    font-size: 18px;
  }
  h1 {
    font-size: 86px;
  }
  h1.large {
    font-size: 100px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 42px;
  }
  h3.large {
    font-size: 46px;
  }
  h5 {
    font-size: 24px;
  }
  p.large {
    font-size: 22px;
  }
  .my_btn {
    padding: 0 25px;
    font-size: 14px;
  }
  .header .menu ul.main_menu li {
    font-size: 16px;
  }
  .header .main_logo {
    width: 100px;
  }
  form .input_block {
    width: 100%;
    margin-bottom: 20px;
  }
  form .input_block .field {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
  }
  form .input_block .field input {
    width: 100%;
    font-size: 20px;
    line-height: 45px;
    color: #ccc;
    background: transparent;
    border: none;
    border-bottom: 1px solid #BCBCBC;
  }
  form .input_block .field input::placeholder {
    color: #000;
  }
  form .input_block textarea {
    border: 1px solid #BCBCBC;
    font-size: 20px;
    line-height: 1.2;
    padding: 20px;
    width: 100%;
  }
  form .input_block textarea::placeholder {
    color: #000;
  }
  form .checkbox {
    display: inline-block;
    position: relative;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: left;
    margin-right: 0px;
  }
  form .checkbox .wpcf7-list-item-label {
    display: none;
  }
  form .checkbox .wpcf7-form-control-wrap {
    position: absolute;
    z-index: 10;
  }
  form .checkbox .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbo {
    margin: 0;
  }
  form .checkbox .wpcf7-not-valid-tip {
    position: absolute;
    width: 200px;
    bottom: -45px;
  }
  form .checkbox p {
    font-size: 10px;
  }
  form .checkbox input {
    appearance: auto;
    width: 25px;
    height: 25px;
    opacity: 0;
  }
  form .checkbox span {
    margin: 0;
  }
  form .checkbox label {
    padding-left: 40px;
    position: relative;
    cursor: pointer;
    text-transform: none;
    line-height: 1.3;
    color: #000;
  }
  form .checkbox label:before {
    content: "";
    position: absolute;
    top: 5px;
    display: block;
    left: -5px;
    width: 22px;
    height: 22px;
    border: 1px solid #BCBCBC;
    margin-left: 5px;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    background: transparent;
    text-align: center;
    line-height: 21px;
    font-size: 16px;
    color: #000;
    border-radius: 0;
    background: transparent;
  }
  form .checkbox.selected label:before {
    content: "✓";
    color: #000;
  }
  form .my_btn {
    transition: font-size 0.3s;
  }
  form .wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
  }
  form .wpcf7-response-output {
    font-size: 14px;
    padding: 15px;
    color: #000;
  }
  form:not(.invalid) .wpcf7-not-valid-tip {
    display: none;
  }
  .section-margin-large {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .section-margin {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .news_posts .post {
    margin-bottom: 20px;
  }
  .properties_slider .tile {
    margin-bottom: 60px;
  }
  .properties_slider .tile :nth-last-child(2) {
    margin-bottom: 0;
  }
  .properties_slider .tile:last-of-type {
    margin-bottom: 0;
  }
  #floorplans .checkbox label, #floorplans .radio label {
    padding-left: 60px;
    font-size: 50px;
  }
  #floorplans .checkbox label:before, #floorplans .radio label:before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
  }
  #floorplans select {
    font-size: 20px;
  }
  #floorplans .suite_tile .img_container .tagline {
    padding: 15px 25px;
    font-size: 24px;
  }
  #floorplans .suite_tile .stats .name {
    width: 55%;
    padding: 0 30px;
  }
  #floorplans .suite_tile .stats .info {
    width: 45%;
    padding: 0 30px;
  }
  #suites .units_table tr td {
    font-size: 19px;
  }
  #place .stats .item span.number {
    font-size: 90px;
  }
  #place .stats .item span.text {
    font-size: 32px;
  }
  #project .stats .item {
    font-size: 16px;
  }
  #team .team_members .img {
    margin-bottom: 30px;
  }
  #team .team_members .team_member:nth-child(2n) {
    margin-top: 70px;
  }
  #team .team_members .team_member:nth-of-type(2) {
    margin-top: 200px;
  }
  #team .team_members .team_member:nth-of-type(3),
  #team .team_members .team_member:nth-of-type(5),
  #team .team_members .team_member:nth-of-type(7) {
    margin-top: -130px;
  }
}
@media (min-width: 992px) and (max-width: 1500px) {
  header.scrolled .logo_container {
    height: 40px;
  }
}
@media (max-width: 1400px) {
  .loader_overlay h1 {
    font-size: 100px;
  }
  .header .menu ul.main_menu li {
    margin: 0 15px;
    font-size: 18px;
  }
  .footer .footer_menu {
    margin-top: 100px;
    margin-bottom: 90px;
  }
  .footer .footer_menu li {
    margin-right: 30px;
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 74px;
    margin-bottom: 25px;
  }
  h1.large {
    font-size: 85px;
  }
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 38px;
  }
  h3.large {
    font-size: 44px;
  }
  h4 {
    font-size: 36px;
  }
  h5 {
    font-size: 20px;
  }
  .header .menu ul.main_menu li {
    font-size: 14px;
  }
  .news_posts .post {
    margin-bottom: 60px;
  }
  #place .project {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #place .stats .item span.number {
    font-size: 70px;
  }
  #place .stats .item span.text {
    font-size: 24px;
    padding-left: 5px;
  }
  #place .main_communities {
    padding-right: 0;
  }
  #floorplans .checkbox label, #floorplans .radio label {
    padding-left: 60px;
    font-size: 40px;
  }
  #floorplans .checkbox label:before, #floorplans .radio label:before {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 24px;
  }
  #floorplans select {
    font-size: 20px;
  }
  #floorplans .suite_tile .img_container .tagline {
    padding: 15px 25px;
    font-size: 24px;
  }
  #floorplans .suite_tile .stats {
    flex-wrap: wrap;
    padding: 25px 0;
  }
  #floorplans .suite_tile .stats .name {
    width: 100%;
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 20px;
  }
  #floorplans .suite_tile .stats .info {
    width: 100%;
    padding-top: 20px;
  }
  #floorplans .suite_tile .stats .info .row {
    width: 100%;
    margin-bottom: 10px;
  }
  #floorplans .suite_tile .stats .info .row:last-of-type {
    margin-bottom: 0;
  }
  #suites .units_table tr td {
    font-size: 15px;
  }
  #suites .units_table tr td img {
    width: 20px;
  }
}
@media (max-width: 1199.98px) {
  .place-wrapper {
    --col-width: 30vw;
    padding-right: 0;
  }
  .place-wrapper .col .tile {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
  h1 {
    font-size: 70px;
    margin-bottom: 20px;
  }
  h1.large {
    font-size: 70px;
  }
  h2 {
    font-size: 46px;
  }
  h3 {
    font-size: 36px;
  }
  h3.large {
    font-size: 40px;
  }
  h4 {
    font-size: 32px;
  }
  p.large {
    font-size: 20px;
  }
  .loader_overlay h1 {
    font-size: 80px;
  }
  .full-width-right-padding {
    padding-right: 40px;
  }
  .full-width-left-padding {
    padding-left: 40px;
  }
  .section-margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .arrow_link .arrow {
    width: 25px;
  }
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
    transition: opacity 0.4s;
    -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
  }
  .header .main_logo {
    width: 150px;
  }
  .header .menu ul.main_menu {
    display: none;
    text-align: center;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background: #fff;
    transition: opacity 0.4s;
    padding-top: 80px;
    white-space: pre-wrap;
  }
  .header .menu ul.main_menu li {
    font-size: 22px;
    display: inline-block;
    margin: 0 auto 50px;
  }
  .header.active_menu .menu ul.main_menu {
    opacity: 1;
    z-index: 2;
  }
  form.form .input_block .name {
    font-size: 18px;
    width: 65px;
  }
  form.form .checkbox {
    font-size: 14px;
  }
  .infinite-scroll-container .scroll-content {
    gap: 10px;
  }
  .infinite-scroll-container .scroll-content .item_scrolling {
    width: 50%;
  }
  .footer {
    padding-top: 40px;
  }
  .news_posts .container {
    max-width: 100%;
  }
  #home .news_posts,
  #home .properties_slider {
    padding-right: 0;
  }
  #home .news_posts .container,
  #home .properties_slider .container {
    padding-right: 0;
  }
  #home .news_posts .tile,
  #home .properties_slider .tile {
    margin-bottom: 0;
  }
  #home .news_posts .scroll_wrapper,
  #home .properties_slider .scroll_wrapper {
    max-width: 100%;
    overflow-x: scroll;
    padding-bottom: 40px;
  }
  #home .news_posts .scroll_wrapper .row,
  #home .properties_slider .scroll_wrapper .row {
    display: flex;
    flex-wrap: nowrap;
  }
  #home .news_posts .scroll_wrapper .row .col-wrapper,
  #home .properties_slider .scroll_wrapper .row .col-wrapper {
    width: 80vw;
  }
  #home .news_posts .scroll_wrapper .post,
  #home .properties_slider .scroll_wrapper .post {
    margin-bottom: 0;
  }
  .place-wrapper {
    --col-width: calc(46vw + 50px);
  }
  #place .stats .item span.number {
    font-size: 55px;
  }
  #place .stats .item span.text {
    font-size: 18px;
  }
  #project .stats .item h6 {
    padding-top: 0px;
  }
  #team .team_members {
    grid-template-columns: repeat(1, 1fr);
  }
  #team .team_members .team_member {
    margin-bottom: 40px;
  }
  #team .team_members .team_member:nth-child(2n) {
    margin-top: auto;
  }
  #team .team_members .team_member:nth-of-type(even) {
    margin-top: auto;
    padding-left: 20%;
  }
  #team .team_members .team_member:nth-of-type(odd) {
    padding-right: 20%;
  }
  #team .team_members .team_member:nth-of-type(3),
  #team .team_members .team_member:nth-of-type(5),
  #team .team_members .team_member:nth-of-type(7) {
    margin-top: auto;
  }
  #suites h3 {
    font-family: "Helvetica Neue Medium";
    font-size: 30px;
    margin-bottom: 0;
  }
  #suites h3 span {
    font-size: 16px;
    font-family: "Helvetica Neue Light";
  }
  #suites .units_table tr {
    border-bottom: 1px solid #000;
    background: #fff;
  }
  #suites .units_table tr td {
    width: 50%;
    white-space: nowrap;
  }
  #suites .units_table tr td b {
    font-family: "Helvetica Neue Bold";
    text-transform: uppercase;
  }
  #suites .units_table tr:nth-of-type(even) {
    background: #fff;
  }
  #suites .units_table tr td {
    font-size: 16px;
    text-align: left;
  }
  #suites .units_table tr td:first-of-type {
    padding-left: 0;
  }
  #suites .units_table tr:first-of-type td {
    vertical-align: bottom;
  }
  #suites .units_table tr:first-of-type td:last-of-type {
    width: 20%;
    text-align: right;
  }
  #suites .units_table tr:first-of-type td:last-of-type img {
    width: 30px;
  }
  #suites .units_table tbody tr:nth-of-type(even) {
    background: #fff;
  }
  #suites .units_table tbody tr:hover {
    background: #fff;
    color: #000;
  }
}
@media (max-width: 600px) {
  .header .menu ul.main_menu {
    top: 80px;
  }
  .container {
    max-width: 100%;
  }
  .place-wrapper {
    --col-width: calc(74vw + 50px);
  }
  .coming_soon_slider_wrapper .type .tile {
    width: calc(25vw + 50px);
  }
}
@media (max-width: 600px) {
  body {
    padding-top: 70px;
    font-size: 15px;
  }
  h1 {
    font-size: 58px;
  }
  h1.large {
    font-size: 50px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 25px;
  }
  h3.large {
    font-size: 25px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  p.large {
    font-size: 18px;
  }
  .loader_overlay h1 {
    font-size: 55px;
  }
  .full-width-right-padding {
    padding-right: 20px;
  }
  .full-width-left-padding {
    padding-left: 20px;
  }
  .section-margin-large {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .expanded_image {
    margin-left: -24px;
    width: 100vw;
    max-width: none;
  }
  .section-margin {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .place-wrapper .scroll_wrapper .row {
    width: calc(2 * (60vw + 50px) + 20px);
  }
  .place-wrapper .col-lg-4 {
    width: calc(60vw + 50px);
  }
  .properties_slider .tile {
    margin-bottom: 40px;
  }
  .properties_slider .tile :nth-last-child(2) {
    margin-bottom: 0;
  }
  .properties_slider .tile:last-of-type {
    margin-bottom: 0;
  }
  .infinite-scroll-container .scroll-content {
    gap: 10px;
  }
  .infinite-scroll-container .scroll-content .item_scrolling {
    width: 70%;
  }
  .infinite-scroll-container.smaller_loop .scroll-content {
    gap: 5px;
  }
  .infinite-scroll-container.smaller_loop .scroll-content .item_scrolling {
    width: 40%;
  }
  .scroll_wrapper_wrapper::before {
    display: none;
  }
  .scroll_wrapper_wrapper .arrow_left,
  .scroll_wrapper_wrapper .arrow_right {
    display: none;
  }
  .coming_soon_slider_wrapper .type .tile {
    width: calc(55vw + 50px);
  }
  .footer {
    padding-top: 20px;
  }
  .footer h6 {
    font-size: 15px;
    letter-spacing: 1px;
  }
  #home .news_posts .scroll_wrapper .row .col-xl-3,
  #home .properties_slider .scroll_wrapper .row .col-xl-3 {
    width: 70vw;
  }
  #place .stats .item span.number {
    font-size: 30px;
  }
  #place .stats .item span.text {
    font-size: 12px;
  }
  #project .title {
    margin-top: 30px;
  }
  #project .stats .item {
    margin-bottom: 20px;
    font-size: 15px;
  }
  #project .stats .item h6 {
    font-size: 11px;
  }
  #floorplans .checkbox label, #floorplans .radio label {
    padding-left: 45px;
    font-size: 36px;
  }
  #floorplans .checkbox label:before, #floorplans .radio label:before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 16px;
  }
  #floorplans select {
    font-size: 20px;
  }
  #floorplans .suite_tile .img_container .tagline {
    padding: 15px 25px;
    font-size: 20px;
  }
  #floorplans .suite_tile .stats {
    flex-wrap: wrap;
    padding: 25px 0;
  }
  #floorplans .suite_tile .stats .name {
    width: 100%;
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 20px;
  }
  #floorplans .suite_tile .stats .info {
    width: 100%;
    padding-top: 20px;
  }
  #floorplans .suite_tile .stats .info .row {
    width: 100%;
    margin-bottom: 10px;
  }
  #floorplans .suite_tile .stats .info .row:last-of-type {
    margin-bottom: 0;
  }
  #floorplans .filters {
    margin-bottom: 0;
  }
  #team .team_members .team_member:nth-of-type(even) {
    padding-left: 0;
  }
  #team .team_members .team_member:nth-of-type(odd) {
    padding-right: 0;
  }
  #team .team_members .team_member .img {
    aspect-ratio: 4/3;
  }
  #team .team_members .team_member h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  #team .team_members .team_member h5 {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 360px) {
  h2 {
    font-size: 40px;
  }
  #place .project {
    padding-bottom: 25px;
  }
  #place .stats .item span.number {
    font-size: 32px;
  }
  #place .stats .item span.text {
    font-size: 11px;
  }
}