/*transform origin*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
   * Basic styles for links
   */
a {
  color: #000000;
  text-decoration: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

textarea {
  resize: vertical;
}

button:focus {
  outline-width: 1px;
  outline-style: dotted;
  outline-color: transparent;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*.......................................................................
      Paid font provided, 
      3 desktop installation and single domain upto 10k monthly visitors
      Recipt added in fonts folder
.........................................................................*/
@font-face {
  font-family: "FKGroteskNeue-Bold";
  src: url("../font/FKGroteskNeue/woff2/FKGroteskNeue-Bold.woff2") format("woff2"), url("../font/FKGroteskNeue/woff/FKGroteskNeue-Bold.woff") format("woff"), url("../font/FKGroteskNeue/ttf/FKGroteskNeue-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "FKGroteskNeue-Light";
  src: url("../font/FKGroteskNeue/woff2/FKGroteskNeue-Light.woff2") format("woff2"), url("../font/FKGroteskNeue/woff/FKGroteskNeue-Light.woff") format("woff"), url("../font/FKGroteskNeue/ttf/FKGroteskNeue-Light.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "FKGroteskNeue-Medium";
  src: url("../font/FKGroteskNeue/woff2/FKGroteskNeue-Medium.woff2") format("woff2"), url("../font/FKGroteskNeue/woff/FKGroteskNeue-Medium.woff") format("woff"), url("../font/FKGroteskNeue/ttf/FKGroteskNeue-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "FKGroteskNeue-Regular";
  src: url("../font/FKGroteskNeue/woff2/FKGroteskNeue-Regular.woff2") format("woff2"), url("../font/FKGroteskNeue/woff/FKGroteskNeue-Regular.woff") format("woff"), url("../font/FKGroteskNeue/ttf/FKGroteskNeue-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-style: normal;
}
body {
  font-family: "FKGroteskNeue-Regular", sans-serif;
  line-height: 1.4;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: -0.6px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.504px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "FKGroteskNeue-Regular", sans-serif;
  font-weight: normal;
  margin-top: 0;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.skip-nav {
  background: transparent;
  color: #000000;
  left: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: -4.2rem;
  z-index: 99999;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.skip-nav:focus {
  box-shadow: 0 0 3px #000000, 0 0 7px #000000;
  background: #ffffff;
  left: 0;
  outline: 0;
  position: fixed;
  top: 0;
}

button {
  cursor: pointer;
}

a:focus,
button:focus,
input:focus,
*:focus {
  text-decoration: none;
}

a:focus,
button:focus,
*:focus {
  outline-width: 1px;
  outline-style: dotted;
  outline-color: transparent;
}
.using-keytab a:focus,
.using-keytab button:focus,
.using-keytab *:focus {
  outline-color: #000000;
}

.using-keytab footer *:focus,
.using-keytab header *:focus,
.using-keytab nav *:focus,
.using-keytab .form_wrap .checkbox_wrap .checkbox + label:focus {
  outline-color: #ffffff;
}

.hidden-text {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.disable_link {
  cursor: default;
  pointer-events: none;
}

.hide_cnt {
  display: none !important;
}

@media (min-width: 992px) {
  .show_mob {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show_mob_only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show_desk_tab {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .show_desk {
    display: none !important;
  }
}

.mainCopy,
p {
  font: 400 20px/24px "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.6px;
}
@media (max-width: 991px) {
  .mainCopy,
  p {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.504px;
  }
}

.biggerCopy {
  font: 400 24px/120% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.6px;
}
.biggerCopy.copy_caps {
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-size: 16px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .biggerCopy {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.504px;
  }
  .biggerCopy .copy_caps {
    font-size: 12px;
    letter-spacing: 0.44px;
  }
}

.smallerCopy {
  font: 600 14px/140% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.1;
}

.secTitleFontBig {
  font: 400 64px/normal "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secTitleFontBig {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .secTitleFontBig {
    font-size: 24px;
  }
}

.secTitleFont {
  font: 400 58px/112% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.58px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secTitleFont {
    font-size: 28px;
    line-height: 108%;
    letter-spacing: -0.028px;
  }
}

.secTitleFont2 {
  font: 400 48px/112% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secTitleFont2 {
    font-size: 20px;
    line-height: 108%;
    letter-spacing: -0.1px;
  }
}

footer .secTitleFont2 {
  letter-spacing: -2.064px;
}
@media (max-width: 991px) {
  footer .secTitleFont2 {
    font-size: 28px;
    letter-spacing: -1.204px;
  }
}
footer .secTitleFont2.spread_word span:last-child {
  display: none;
}

.secSubTitleFont {
  font: 400 20px/115% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secSubTitleFont {
    letter-spacing: -0.6px;
  }
}

.secSubTitleFontSmall1 {
  font: 400 18px/140% "FKGroteskNeue-Medium", sans-serif;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.secSubTitleFontSmall2 {
  font: 400 14px/140% "FKGroteskNeue-Medium", sans-serif;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secSubTitleFontSmall2 {
    letter-spacing: 0.2px;
  }
}

.link,
.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 400 14px/normal "FKGroteskNeue-Medium", sans-serif;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 40px;
}
.btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 12px 32px 10px;
  min-width: 170px;
  text-align: center;
}
@media (max-width: 991px) {
  .btn {
    min-width: initial;
  }
}

.btn-transparent-white {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.system .btn-transparent-white:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-transparent-black {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.system .btn-transparent-black:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}
.system .btn-white:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-black {
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.system .btn-black:hover {
  background-color: #ffffff;
  color: #000000;
}

.common_padding_lr {
  padding-left: 2.91vw;
  padding-right: 2.91vw;
}
@media (max-width: 991px) {
  .common_padding_lr {
    padding-left: 5.33vw;
    padding-right: 5.33vw;
  }
}

/*.......Video play/pause......*/
.has_video {
  position: relative;
}

.video_play_pause {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  text-indent: -999;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 2.91vw;
  width: 20px;
  height: 20px;
  background: transparent;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.system .video_play_pause:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .video_play_pause {
    bottom: 12px;
    left: 12px;
  }
}
.video_play_pause:before, .video_play_pause:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/icons/pause_icon.svg) no-repeat left center/contain;
}
.video_play_pause:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: url(../images/icons/play_icon.svg) no-repeat left center/contain;
}
.video_play_pause.paused:before {
  opacity: 0;
}
.video_play_pause.paused:after {
  opacity: 1;
}

.title_with_separator .title_copy {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}
.title_with_separator .title_copy:first-child:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}
.title_with_separator .title_copy.copy_align_right {
  text-align: right;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .title_with_separator .title_copy {
    padding: 5px 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.cap_text {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
}

.border-btn,
.thumb_link {
  display: inline-block;
  padding: 14px 125px 14px 22px;
  border: 1px solid #000000;
  font: 500 14px/normal "FKGroteskNeue-Medium", sans-serif;
  border-radius: 73px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
}
@media (max-width: 419px) {
  .border-btn,
  .thumb_link {
    padding: 14px 25px 14px 25px;
    width: 100%;
  }
}
.border-btn:after,
.thumb_link:after {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  background-image: url("../images/icons/arrow.svg");
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  background-size: cover;
  transition: all 0.3s;
}
.border-btn.white,
.thumb_link.white {
  color: #ffffff;
  border-color: #ffffff;
}
.border-btn.white:after,
.thumb_link.white:after {
  background-image: url("../images/icons/arrow-white.svg");
}
html.system .border-btn.white:hover,
html.system .thumb_link.white:hover {
  background: #ffffff;
  color: #000000;
}
html.system .border-btn.white:hover:after,
html.system .thumb_link.white:hover:after {
  background-image: url("../images/icons/arrow.svg");
}
html.system .border-btn:hover,
html.system .thumb_link:hover {
  background: #000000;
  color: #ffffff;
}
html.system .border-btn:hover:after,
html.system .thumb_link:hover:after {
  background-image: url("../images/icons/arrow-white.svg");
}

.banner_title {
  position: absolute;
  left: 10px;
  bottom: 20px;
}

.text_right {
  text-align: right;
}

.half_width {
  width: 45%;
  margin-left: auto;
  margin-right: 5vw;
}

.reverse_transparent {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.text_center {
  text-align: center;
}

.thumb_link {
  border: 0;
  padding: 5px 125px 0 0;
  width: 100%;
  font-size: 26px;
  letter-spacing: -0.6px;
}
.thumb_link::after {
  top: 55%;
  right: 0;
  height: 23px;
  width: 23px;
  background-image: url("../images/icons/resident_icon_dark.svg") !important;
}
.thumb_link:hover {
  background-color: transparent !important;
  color: #000000 !important;
}

.flex_wrap {
  display: flex;
}
@media (max-width: 991px) {
  .flex_wrap {
    flex-flow: column;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.inner_hero {
  min-height: 100vh;
  position: relative;
  background: #000000;
  width: 100%;
  z-index: 99;
}
.inner_hero .image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.inner_hero .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.inner_hero .content {
  position: absolute;
  bottom: 1.91vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner_hero .content span {
  font-size: 64px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .inner_hero .content span {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .inner_hero .content span {
    font-size: 28px;
  }
}

.video_sec {
  position: relative;
  z-index: 9;
  background: #000000;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .video_sec {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.video_sec .video_sec_link {
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .video_sec .video_sec_link {
    padding-left: 5.33vw;
    padding-right: 5.33vw;
  }
}
.video_sec .video_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.video_sec .video_wrap video {
  height: 100%;
  width: 100%;
}

.full_image {
  height: 49.86vw;
  position: relative;
  width: 100%;
  z-index: 9;
}
.full_image .image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.full_image .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.thumb_link_wrap {
  gap: 20px;
  padding: 40px 40px 50px 40px;
  background: #ffffff;
  position: relative;
}
@media (max-width: 991px) {
  .thumb_link_wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.thumb_link_wrap .thumb_wrap {
  overflow: hidden;
}
.thumb_link_wrap a {
  width: 33.3333333333%;
}
@media (max-width: 991px) {
  .thumb_link_wrap a {
    width: 100%;
  }
}
.thumb_link_wrap a img {
  transition: transform 0.65s ease;
  transform: scale(1);
  object-fit: cover;
  height: 270px;
  width: 100%;
}
.thumb_link_wrap a:hover img {
  transform: scale(1.05);
}

.intro_column .intro_second_row {
  display: flex;
  gap: 10vw;
}
@media (min-width: 992px) {
  .intro_column .intro_second_row {
    align-items: center;
  }
}
@media (max-width: 991px) {
  .intro_column .intro_second_row {
    flex-direction: column;
  }
}
.intro_column .intro_second_row .image_column_left .image_wrap {
  position: relative;
  height: 29vw;
  width: 22vw;
}
@media (max-width: 991px) {
  .intro_column .intro_second_row .image_column_left .image_wrap {
    height: 66.3vw;
    width: 51vw;
    margin-left: auto;
  }
}
@media (max-width: 991px) {
  .intro_column .intro_second_row .image_column_left span {
    width: 51vw;
    margin-left: auto;
  }
}
.intro_column .intro_second_row .image_column_right .image_wrap {
  position: relative;
  height: 29.3vw;
  width: 44vw;
}
@media (max-width: 991px) {
  .intro_column .intro_second_row .image_column_right .image_wrap {
    width: 100%;
    height: 60vw;
  }
}

#error_page img {
  width: 100%;
  object-fit: cover;
}
#error_page h1 {
  margin: 0;
}
#error_page .btn-white {
  font-weight: 500;
  margin-top: 30px;
  width: 194px;
  padding: 14px 20px 14px 20px;
  text-align: left;
}
#error_page .btn-white:after {
  right: 20px;
}
@media (min-width: 992px) {
  #error_page {
    align-items: center;
  }
  #error_page .image_column {
    width: 50%;
  }
  #error_page h1 {
    font-size: 182px;
    line-height: 232px;
  }
  #error_page p {
    font-size: 48px;
  }
  #error_page .content_column {
    width: 50vw;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  #error_page {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #error_page h1 {
    font-size: 102px;
    line-height: 102px;
    margin-bottom: 0;
  }
  #error_page p {
    font-size: 28px;
  }
  #error_page .content_column {
    order: 2;
    padding: 50px 25px;
  }
  #error_page .image_column {
    order: 1;
  }
}

.btn-disable {
  pointer-events: none !important;
}

body:not(.home-page) .h_scroll_text {
  display: none !important;
}

#popup-overlay {
  position: fixed;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  overflow: auto;
  flex-wrap: wrap;
}
#popup-overlay:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.75;
  background: #000000;
}
#popup-overlay .popup .round-bg {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #popup-overlay .popup .round-bg {
    right: 32px;
    top: 32px;
  }
}
#popup-overlay .popup #popup-close {
  width: 14px;
  height: 14px;
  top: 0;
  right: 0;
  position: relative;
  cursor: pointer;
}
#popup-overlay #popup-close:before {
  content: "";
  position: absolute;
  width: 100%;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#popup-overlay #popup-close:after {
  content: "";
  position: absolute;
  width: 100%;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#popup-overlay .popup #popup-close:after, #popup-overlay .popup #popup-close:before {
  height: 2px;
}
#popup-overlay #popup-container {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
#popup-overlay .popup {
  overflow: hidden;
  text-align: center;
  background: #fff;
  margin: 0 24px;
  max-width: 628px;
  z-index: 2;
  position: relative;
  padding: 64px 24px;
}
@media (min-width: 1024px) {
  #popup-overlay .popup {
    padding: 72px 60px;
    width: 85%;
    margin: 0;
  }
}
#popup-overlay .popup:before {
  content: "";
  border: 2px solid #1f1b12;
  top: 10px;
  left: 10px;
  right: 10px;
  display: block;
  bottom: 10px;
  position: absolute;
  z-index: 0;
}
#popup-overlay .popup .content-wrap {
  position: relative;
}
#popup-overlay .popup .popup-title {
  font-family: "FKGroteskNeue-Bold", sans-serif;
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  #popup-overlay .popup .popup-title {
    font-size: 34px;
    line-height: 48px;
  }
}
#popup-overlay .popup p {
  font-family: "FKGroteskNeue-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  #popup-overlay .popup p {
    font-size: 18px;
    line-height: 28px;
  }
}
#popup-overlay .popup .btn {
  background: #000000;
  color: #ffffff;
  display: inline-block;
  border: 1px solid transparent;
}
html.system #popup-overlay .popup .btn:hover {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}
#popup-overlay .popup .special_disclaimer {
  font-size: 0.85em;
  padding-top: 20px;
  padding-bottom: 0px;
}

.popups.hidden {
  opacity: 0;
  visibility: hidden;
}

.has-dollar-icon:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  margin-right: 8px;
  background: url("../images/icons/dollar.svg") no-repeat center center/100% auto;
}

.pop-up-contact-form form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.pop-up-contact-form form .form_field {
  width: 100%;
  position: relative;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .pop-up-contact-form form .form_field_fname, .pop-up-contact-form form .form_field_lname {
    width: calc(50% - 5px);
  }
}
.pop-up-contact-form form .control-label {
  position: absolute;
  color: #ffffff;
  padding: 5px 0;
  top: 0;
  left: 0;
  pointer-events: none;
  text-transform: uppercase;
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.pop-up-contact-form form input[type=text], .pop-up-contact-form form textarea, .pop-up-contact-form form input[type=number], .pop-up-contact-form form input[type=email], .pop-up-contact-form form input[type=date], .pop-up-contact-form form input[type=tel], .pop-up-contact-form form select {
  width: 100%;
  padding: 10px 0 10px 5px;
  position: relative;
  font-size: 16px;
}
.pop-up-contact-form form input[type=text]::placeholder, .pop-up-contact-form form textarea::placeholder, .pop-up-contact-form form input[type=number]::placeholder, .pop-up-contact-form form input[type=email]::placeholder, .pop-up-contact-form form input[type=date]::placeholder, .pop-up-contact-form form input[type=tel]::placeholder, .pop-up-contact-form form select::placeholder {
  color: #000000;
  font-size: 16px;
}
.pop-up-contact-form form textarea {
  resize: none;
}
.pop-up-contact-form form select {
  background: #fff;
  color: #000;
  height: 42px;
  border: 1px solid rgb(133, 133, 133);
  border-radius: 0;
}
.pop-up-contact-form form .controls {
  text-align: left;
}
.pop-up-contact-form form .controls span {
  font-size: 12px;
  color: red;
}
.pop-up-contact-form form .form_action {
  margin: 18px auto 0px;
}
.pop-up-contact-form #form-success .contact_response {
  color: #000000;
}

.img-wrapper {
  position: relative;
}
.img-wrapper.aspect-ratio--16-9:after {
  padding-bottom: 56.25%;
}
.img-wrapper.aspect-ratio--1-1:after {
  padding-bottom: 100%;
}
.img-wrapper:after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
  position: relative;
  background: #000000;
  padding-top: 35px;
  padding-bottom: 35px;
  text-transform: uppercase;
}
footer > *:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 991px) {
  footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
footer, footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#footer_middle, #footer_bottom, #footer_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#footer_top {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  #footer_top {
    justify-content: center;
  }
}
#footer_top .form_wrap {
  width: 100%;
  max-width: 860px;
}
@media (max-width: 991px) {
  #footer_top .form_wrap {
    width: 100%;
    max-width: 335px;
  }
}
#footer_top .tel-link {
  display: inline-block;
  text-decoration: none;
}

#footer_middle {
  justify-content: center;
  margin-top: 166px;
  margin-bottom: 206px;
}
@media (max-width: 991px) {
  #footer_middle {
    margin-top: 130px;
    margin-bottom: 139px;
  }
}

.f_spera_logo {
  width: 255px;
  height: auto;
}
@media (max-width: 991px) {
  .f_spera_logo {
    width: 220px;
  }
}

#footer_bottom {
  align-items: flex-end;
  font: normal 10px/normal "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: 0.2px;
}
#footer_bottom > * {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #footer_bottom > * {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }
}
#footer_bottom .f_bottom_left > *, #footer_bottom .f_bottom_right > * {
  margin-bottom: 20px;
}
#footer_bottom .f_bottom_left {
  padding-right: 10px;
}
@media (max-width: 991px) {
  #footer_bottom .f_bottom_left {
    padding-right: 0;
    padding-left: 10px;
    flex-grow: 0;
    width: auto;
  }
}
#footer_bottom ul {
  list-style: none;
}

.f_partner_logos {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.f_partner_logos a {
  display: inline-block;
  font: 400 14px/normal "FKGroteskNeue-Medium", sans-serif;
  letter-spacing: 1.2px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 34px;
  padding: 8px 63px 8px 28px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.f_partner_logos a:after {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  background: url("../images/icons/resident_icon.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-55%);
  right: 36px;
  transition: all 0.3s;
}
.f_partner_logos a:hover {
  text-decoration: none;
}
html.system .f_partner_logos a:hover {
  background: #ffffff;
  color: #000000;
}
html.system .f_partner_logos a:hover:after {
  background-image: url("../images/icons/resident_icon_dark.svg");
}

.f_address_wrap {
  font-size: 14px;
  letter-spacing: -0.28px;
}
@media (max-width: 991px) {
  .f_address_wrap {
    font-family: "FKGroteskNeue-Medium", sans-serif;
    font-size: 16px;
    line-height: 117%;
    letter-spacing: -0.08px;
  }
}

.f_links_wrap .ada_eho {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.f_links_wrap .ada_eho > *:not(:first-child) {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .f_links_wrap .ada_eho {
    align-items: center;
    justify-content: center;
  }
}
.f_links_wrap ul {
  margin-top: 8px;
}
.f_links_wrap li {
  padding: 2px 0;
}
.f_links_wrap li:last-child {
  padding-bottom: 0;
}

.social_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.social_wrap .social_icons {
  padding: 0 6px;
}
.social_wrap img {
  width: auto;
  height: 16px;
}
@media (max-width: 991px) {
  .social_wrap {
    order: -1;
  }
  .social_wrap .social_icons:first-child {
    padding-left: 0;
  }
  .social_wrap img {
    height: 18px;
  }
}

.f_copyright {
  font-size: 36px;
  line-height: 108%;
  letter-spacing: -1.62px;
}

.ada_logo {
  height: 12px;
  width: auto;
}

.eho_logo {
  width: 16px;
  height: auto;
}

.hines_logo {
  max-width: 105px;
}

.cmp-revoke-consent {
  bottom: 0px;
  left: 0px;
  position: static;
  padding: 0px;
  background: none;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

.form_wrap {
  /*......Error message style.......*/
  /*...calendar icon style in input[type=date]...*/
  /*...remove arrow icon from input[type=number]...*/
  /* Firefox */
}
.form_wrap, .form_wrap form {
  width: 100%;
}
.form_wrap .secTitleFont2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .form_wrap .secTitleFont2.call_us_txt .phone_wrap {
    flex-grow: 1;
    text-align: right;
  }
}
.form_wrap form {
  margin-top: 15px;
  text-transform: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font: 400 16px/115% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.2px;
}
@media (max-width: 991px) {
  .form_wrap form {
    font-size: 12px;
  }
}
.form_wrap .form_field {
  width: calc(50% - 5px);
  position: relative;
  margin-top: 18px;
}
.form_wrap .form_field p {
  font: inherit;
  line-height: 1;
}
.form_wrap .form_field.form_field_message {
  width: 100%;
}
@media (max-width: 991px) {
  .form_wrap .form_field {
    width: 100%;
  }
}
.form_wrap .form_field .error-invalid-msg:after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  opacity: 0;
  background: url(../images/icons/error_icon.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 7px;
}
.form_wrap input:not(.btn), .form_wrap textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: #ffffff;
}
.form_wrap input:not(.btn):not(.btn), .form_wrap textarea:not(.btn) {
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-weight: 500;
}
.form_wrap input[type=text], .form_wrap textarea, .form_wrap input[type=number], .form_wrap input[type=email], .form_wrap input[type=date], .form_wrap input[type=tel] {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  padding: 5px 0;
  position: relative;
}
.form_wrap input[type=text]:focus, .form_wrap textarea:focus, .form_wrap input[type=number]:focus, .form_wrap input[type=email]:focus, .form_wrap input[type=date]:focus, .form_wrap input[type=tel]:focus {
  border-bottom-color: #c8c8c8;
}
.form_wrap textarea {
  resize: none;
}
.form_wrap .control-label {
  position: absolute;
  color: #ffffff;
  padding: 5px 0;
  top: 0;
  left: 0;
  pointer-events: none;
  text-transform: uppercase;
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.form_wrap .control-label.input_focus {
  display: none;
}
.form_wrap .form_action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  order: 1;
}
.form_wrap .form_action > * {
  margin-top: 23px;
}
.form_wrap .form_action .btn {
  cursor: pointer;
}
@media (max-width: 991px) {
  .form_wrap .form_action .btn {
    width: 100%;
    max-width: 335px;
  }
}
.form_wrap .form_field_date .controls {
  position: relative;
}
.form_wrap .form_field_date .controls input {
  padding-right: 40px;
}
.form_wrap .form_field_date .controls:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 19px;
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
  background: url(../images/down_arrow_grey.svg) no-repeat right center/contain;
}
.form_wrap .error-invalid-msg {
  font: normal 12px/115% "FKGroteskNeue-Bold", sans-serif;
  font-size: 12px;
  margin-top: 3px;
  color: #F14A39;
  display: none;
}
.form_wrap .error-invalid input[type=text], .form_wrap .error-invalid textarea, .form_wrap .error-invalid input[type=number], .form_wrap .error-invalid input[type=email], .form_wrap .error-invalid input[type=tel] {
  border-bottom-color: #F14A39;
}
.form_wrap .error-invalid .error-invalid-msg {
  display: block;
}
.form_wrap .error-invalid .error-invalid-msg:after {
  opacity: 1;
}
.form_wrap input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  background: transparent;
  bottom: 0;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.form_wrap input[type=date]:not(:focus)::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.form_wrap .form_field_date .control-label:not(.input_focus) + .controls input[type=date]::-webkit-calendar-picker-indicator,
.form_wrap .form_field_date .control-label:not(.input_focus) + .controls input[type=date]:not(:focus) {
  color: transparent;
}
.form_wrap input::-webkit-outer-spin-button,
.form_wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form_wrap input[type=number] {
  -moz-appearance: textfield;
}

#form-success {
  font: 400 20px/115% "FKGroteskNeue-Regular", sans-serif;
  letter-spacing: -0.2px;
  text-transform: none;
  margin-top: 15px;
  color: #ffffff;
}
#form-success h3 {
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  #form-success {
    font-size: 16px;
  }
  #form-success p {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  #form-success h3 {
    font-size: 64px;
    line-height: 64px;
    max-width: 515px;
  }
}

.hero_sec {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero_sec video {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero_sec:after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.1);
}

.hero_logo {
  display: flex;
  justify-content: center;
  padding-bottom: 160px;
  position: relative;
}
.hero_logo img {
  width: auto;
  height: auto;
  max-width: 49.3vw;
  max-height: 89.5vh;
  margin-top: -30.6vw;
}
@media (min-width: 1600px) {
  .hero_logo img {
    width: 60vw;
    max-width: 60vw;
  }
}
@media (max-width: 991px) {
  .hero_logo img {
    max-width: 78.4vw;
    margin-top: -50.1vw;
  }
}

.intro_copy {
  padding-top: 105px;
  padding-bottom: 33px;
  width: 100%;
  text-align: justify;
}
@media (max-width: 991px) {
  .intro_copy {
    padding-top: 45px;
    padding-bottom: 24px;
  }
}
.intro_copy .img_video_wrap {
  margin-top: 27px;
  width: 100%;
  height: 29.86vw;
  max-height: 530px;
}
@media (max-width: 991px) {
  .intro_copy .img_video_wrap {
    height: 94.4vw;
    max-height: 430px;
    margin-top: 12px;
  }
}
@media (max-width: 767px) {
  .intro_copy .img_video_wrap {
    max-height: 350px;
  }
}
@media (max-width: 575px) {
  .intro_copy .img_video_wrap {
    max-height: 245px;
  }
}
@media (max-width: 359px) {
  .intro_copy .img_video_wrap {
    max-height: 200px;
  }
}
.intro_copy .img_video_wrap img,
.intro_copy .img_video_wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro_copy h2 {
  text-align: justify;
}
.intro_copy h2:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.h_parallax_section {
  padding-top: 236px;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 100vh;
}
@media (max-width: 991px) {
  .h_parallax_section {
    padding-top: 53px;
  }
}

.h_heading_sticky_sec {
  display: flex;
  width: 100%;
  flex-direction: column-reverse;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .h_heading_sticky_sec {
    flex-direction: column;
  }
}
.h_heading_sticky_sec .secTitleFontBig {
  width: 100%;
  z-index: 99;
}
@media (max-width: 991px) {
  .h_heading_sticky_sec .secTitleFontBig {
    padding-bottom: 20px;
  }
}
.h_heading_sticky_sec p {
  width: 48%;
  align-self: flex-end;
}
@media (max-width: 991px) {
  .h_heading_sticky_sec p {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .h_heading_sticky_sec p {
    width: 100%;
  }
}
.h_heading_sticky_sec .vertical_line {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 1px;
  height: 48px;
  background-color: #ffffff;
}
.h_heading_sticky_sec .vertical_line.bottom {
  top: auto;
  bottom: 30px;
}

.h_image_video_wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 36px 166px;
}
@media (max-width: 991px) {
  .h_image_video_wrap {
    padding: 0 0 105px;
  }
}
.h_image_video_wrap .image_video {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  margin-top: 139px;
}
.h_image_video_wrap .image_video:nth-child(2n) {
  align-self: flex-end;
  margin-top: -9.5vw;
}
.h_image_video_wrap .image_video.image_video4 {
  margin-top: -10.83vw;
}
.h_image_video_wrap .image_video img,
.h_image_video_wrap .image_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
@media (max-width: 991px) {
  .h_image_video_wrap .image_video {
    width: 100%;
    justify-content: flex-start;
  }
  .h_image_video_wrap .image_video:nth-child(2n) {
    justify-content: flex-end;
  }
  .h_image_video_wrap .image_video, .h_image_video_wrap .image_video:nth-child(2n) {
    margin-top: 70px;
  }
  .h_image_video_wrap .image_video.image_video4 {
    margin-top: 20px;
  }
}
.h_image_video_wrap .h_img_container1 {
  width: 100%;
  height: 29.99vw;
}
@media (max-width: 991px) {
  .h_image_video_wrap .h_img_container1 {
    width: 83.2vw;
    height: 64vw;
  }
}
.h_image_video_wrap .h_img_container2 {
  width: 31.18vw;
  height: 19.3vw;
}
@media (max-width: 991px) {
  .h_image_video_wrap .h_img_container2 {
    width: 50.13vw;
    height: 40vw;
  }
}
.h_image_video_wrap .h_img_container3 {
  width: 31.25vw;
  height: 37.3vw;
}
@media (max-width: 991px) {
  .h_image_video_wrap .h_img_container3 {
    width: 50.6vw;
    height: 69.3vw;
  }
}
.h_image_video_wrap .h_img_container4 {
  width: 23.125vw;
  height: 28.26vw;
}
@media (max-width: 991px) {
  .h_image_video_wrap .h_img_container4 {
    width: 38.6vw;
    height: 47.2vw;
  }
}

.cards_sec {
  width: 100%;
  background: #ffffff;
}
.cards_sec .card_sec_line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 140px 0px 140px 0px;
}
@media (max-width: 991px) {
  .cards_sec .card_sec_line {
    background: #C8C8C8;
    padding: 55px 0px 120px 0px;
  }
}
.cards_sec .card_sec_line span {
  width: 1px;
  height: 67px;
  background: #000000;
  margin: 0px auto;
}
@media (max-width: 991px) {
  .cards_sec .card_sec_line span {
    width: 2px;
    height: 48px;
  }
}
.cards_sec .cards_sec_wrap {
  display: flex;
  flex-wrap: wrap;
}
.cards_sec .card {
  width: 33.3333333333%;
  transition: ease-in 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cards_sec .card {
    width: 100%;
  }
}
.cards_sec .card .card_icons {
  position: absolute;
}
@media (min-width: 992px) {
  .cards_sec .card .card_icons .animated {
    display: none;
  }
}
@media (max-width: 991px) {
  .cards_sec .card .card_icons .static {
    display: none;
  }
}
html.system .cards_sec .card:hover .static {
  display: none;
}
html.system .cards_sec .card:hover .animated {
  display: block;
}
html.system .cards_sec .card:hover a img {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cards_sec .card:first-child {
    padding-left: calc(2.91vw - 14px);
  }
}
@media (max-width: 991px) {
  .cards_sec .card:first-child {
    background: #7CADF5;
  }
}
.cards_sec .card:first-child .card_icons {
  right: 30px;
  top: -55px;
  height: 102px;
  width: 102px;
}
html.system .cards_sec .card:first-child:hover {
  background: #7CADF5;
}
html.system .cards_sec .card:first-child:hover h4 {
  color: #000000;
}
@media (min-width: 992px) {
  .cards_sec .card:first-child h4 {
    color: #6997DA;
  }
}
@media (max-width: 991px) {
  .cards_sec .card:nth-child(2) {
    background: #F14A39;
  }
}
.cards_sec .card:nth-child(2) .card_icons {
  right: 30px;
  top: -63px;
  height: 125px;
  width: 125px;
}
html.system .cards_sec .card:nth-child(2):hover {
  background: #F14A39;
}
html.system .cards_sec .card:nth-child(2):hover h4 {
  color: #000000;
}
@media (min-width: 992px) {
  .cards_sec .card:nth-child(2) h4 {
    color: #F90C00;
  }
}
@media (min-width: 992px) {
  .cards_sec .card:nth-child(3) {
    padding-right: calc(2.91vw - 14px);
  }
}
@media (max-width: 991px) {
  .cards_sec .card:nth-child(3) {
    background: #C8C8C8;
  }
}
.cards_sec .card:nth-child(3) .card_icons {
  right: 30px;
  top: -53px;
  height: 102px;
  width: 102px;
}
html.system .cards_sec .card:nth-child(3):hover {
  background: #C8C8C8;
}
html.system .cards_sec .card:nth-child(3):hover h4 {
  color: #000000;
}
@media (min-width: 992px) {
  .cards_sec .card:nth-child(3) h4 {
    color: #7E797B;
  }
}
.cards_sec .card .card_wrap {
  padding: 30px 14px 90px 14px;
}
@media (max-width: 991px) {
  .cards_sec .card .card_wrap {
    padding: 0px 0px 40px 0px;
  }
}
.cards_sec .card .card_image {
  position: relative;
  width: 100%;
  padding-bottom: 34vw;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cards_sec .card .card_image {
    padding-bottom: 80vw;
  }
}
@media (max-width: 767px) {
  .cards_sec .card .card_image {
    padding-bottom: 100vw;
  }
}
@media (max-width: 575px) {
  .cards_sec .card .card_image {
    padding-bottom: 110vw;
  }
}
.cards_sec .card .card_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.cards_sec .card .card_image.active {
  padding-bottom: 24vw;
}
@media (max-width: 991px) {
  .cards_sec .card .card_image.active {
    padding-bottom: 80vw;
  }
}
@media (max-width: 767px) {
  .cards_sec .card .card_image.active {
    padding-bottom: 100vw;
  }
}
@media (max-width: 575px) {
  .cards_sec .card .card_image.active {
    padding-bottom: 110vw;
  }
}
.cards_sec .card .card_content {
  position: relative;
}
@media (max-width: 991px) {
  .cards_sec .card .card_content {
    padding: 0px 20px;
  }
}
.cards_sec .card .card_content span {
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  padding-top: 10px;
}
@media (max-width: 991px) {
  .cards_sec .card .card_content span {
    padding-top: 30px;
  }
}
.cards_sec .card .card_content h4 {
  padding: 60px 0px 10px 0px;
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  transition: ease-in 0.3s;
}
.cards_sec .card .card_content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.1px;
  padding-bottom: 10px;
  max-width: 360px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .cards_sec .card .card_content p {
    max-width: 97%;
  }
}
.cards_sec .card .card_content a.border-btn {
  font: 700 12px/normal "FKGroteskNeue-Bold", sans-serif;
  padding: 5px 42px 5px 18px;
  width: auto;
}
.cards_sec .card .card_content a.border-btn:after {
  height: 11px;
  width: 11px;
}

.cards_sec,
footer {
  position: relative;
}

.image_with_header {
  height: 49.86vw;
  position: relative;
  background: #000000;
  width: 100%;
  z-index: 99;
  min-height: 245px;
}
.image_with_header .image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.image_with_header .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin-top: -1px;
}
.image_with_header .content {
  position: absolute;
  bottom: 1.91vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .image_with_header .content {
    bottom: 3.33vw;
  }
}
.image_with_header .content span {
  font-size: 64px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .image_with_header .content span {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .image_with_header .content span {
    font-size: 28px;
  }
}
@media (max-width: 359px) {
  .image_with_header .content span {
    font-size: 24px;
  }
}

.residences_sec {
  display: flex;
  position: relative;
  background: #ffffff;
  z-index: 99;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 5vw;
}
@media (max-width: 991px) {
  .residences_sec {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .residences_sec .residences_image {
    width: 100%;
    display: flex;
  }
  .residences_sec .residences_image .mobile_logo {
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .residences_sec .residences_image {
    width: 46vw;
  }
  .residences_sec .residences_image .mobile_logo {
    display: none;
  }
}
.residences_sec .residences_image .image_wrap {
  height: 50vw;
  width: 100%;
  position: relative;
}
.residences_sec .residences_image .image_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.residences_sec .right_content {
  width: 30vw;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .residences_sec .right_content .residences_logo img {
    max-width: 250px;
  }
}
@media (max-width: 991px) {
  .residences_sec .right_content {
    width: 100%;
  }
  .residences_sec .right_content .residences_logo {
    display: none;
  }
}
.residences_sec .right_content .residences_content {
  align-self: flex-end;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .residences_sec .right_content .residences_content {
    padding-top: 30px;
  }
}
.residences_sec .right_content .residences_content h4 {
  font: 500 26px/normal "FKGroteskNeue-Bold", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .residences_sec .right_content .residences_content h4 {
    font-size: 24px;
  }
}
.residences_sec .right_content .residences_content p {
  font: 400 20px/normal "FKGroteskNeue-Regular", sans-serif;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .residences_sec .right_content .residences_content p {
    font-size: 16px;
  }
}

.reverse_with_bg {
  background: #000000;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .reverse_with_bg {
    flex-direction: row-reverse;
  }
}
.reverse_with_bg h4 {
  color: #ffffff;
}
.reverse_with_bg p {
  color: #ffffff;
}

.two_column {
  position: relative;
  background: #ffffff;
  z-index: 99;
  display: flex;
  gap: 5vw;
  align-items: center;
}
@media (min-width: 992px) {
  .two_column {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .two_column {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.two_column .image {
  width: 46vw;
}
@media (max-width: 991px) {
  .two_column .image {
    width: 100%;
  }
}
.two_column .content {
  width: 30vw;
}
@media (max-width: 991px) {
  .two_column .content {
    width: 100%;
    padding-top: 25px;
  }
}
.two_column .content h4 {
  font: 500 26px/normal "FKGroteskNeue-Medium", sans-serif;
  text-transform: uppercase;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .two_column .content h4 {
    font-size: 24px;
  }
}
.two_column .content p {
  font: 400 20px/normal "FKGroteskNeue-Regular", sans-serif;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .two_column .content p {
    font-size: 16px;
  }
}

.bottom_links {
  display: flex;
  position: relative;
  background: #D9D9D9;
  padding-top: 36px;
  padding-bottom: 36px;
}
@media (min-width: 992px) {
  .bottom_links {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .bottom_links {
    flex-direction: column;
    gap: 15px;
  }
}
.bottom_links a {
  width: 50%;
  border: 1px solid #000000;
  font-size: 14px;
  font-family: "FKGroteskNeue-Medium", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 73px;
  padding: 14px 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .bottom_links a {
    width: 100%;
  }
}
.bottom_links a:after {
  position: absolute;
  content: "";
  height: 18px;
  width: 17px;
  background-image: url("../images/icons/arrow.svg");
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-size: cover;
  transition: all 0.3s;
}
.bottom_links a.download-btn:after {
  background-image: url("../images/icons/download_icon.svg");
}
html.system .bottom_links a:hover {
  background: #000000;
  color: #ffffff;
}
html.system .bottom_links a:hover:after {
  background-image: url("../images/icons/arrow-white.svg");
}
html.system .bottom_links a.download-btn:hover {
  background: #000000;
  color: #ffffff;
}
html.system .bottom_links a.download-btn:hover:after {
  background-image: url("../images/icons/download_icon_white.svg");
}

@media (max-width: 991px) {
  .home-page .video_sec {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

/*# sourceMappingURL=home.css.map */
