span {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}
a {
  text-decoration: none;
}
.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hidden {
  display: none;
}
.carousel-control-prev .carousel-control-next-icon {
  transform: rotate(180deg);
}
.carousel-control-next-icon {
  background-image: url('../images/arrow-right.png');
  width: 20px;
  height: 70px;
  opacity: 9 !important;
}
.carousel-control-next {
  opacity: 9 !important;
}
.carousel-control-prev {
  opacity: 9 !important;
}
.carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  border: 2px solid #fff;
  background-color: transparent;
}
.carousel-indicators li.active {
  background-color: #dce4e4;
}
@media only screen and (max-width: 768px) {
  .carousel-control-next-icon {
    width: 10px;
    height: 30px;
    opacity: 9 !important;
  }
  .carousel-control-prev-icon {
    width: 10px;
    height: 30px;
    opacity: 9 !important;
  }
}
/* Fullscreen Video */
body {
  transition: 0.3s all;
}
body.intro-active {
  overflow: hidden;
  /* no scroll */
  height: calc(100vh);
  /* lock viewport height */
}
.intro-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  background: #000;
  /* Green Bar Overlay */
  /* Tablet/Mobile ≤768px: reset to normal flex row */
}
.intro-video-wrap .video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.intro-video-wrap .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* maintain 16:9 ratio */
  min-height: 100vh;
  min-width: 177.78vh;
  /* maintain 16:9 ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* make it unclickable */
}
.intro-video-wrap .intro-overlay-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 69, 75, 0.7);
  /* green bar */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* logo centered by default */
  padding: 15px 30px;
  z-index: 10000;
}
.intro-video-wrap .intro-overlay-bar .intro-logo {
  text-align: center;
  flex: 1;
}
.intro-video-wrap .intro-overlay-bar .intro-logo img {
  max-height: 50px;
}
.intro-video-wrap .intro-overlay-bar .intro-action {
  position: absolute;
  right: 30px;
  /* button stuck on right */
}
.intro-video-wrap .intro-overlay-bar .intro-action .btn {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 6px 15px;
  font-size: 16px;
  border-radius: 25px;
  font-weight: 400;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .intro-video-wrap .intro-overlay-bar {
    justify-content: space-between;
    /* normal flex row */
  }
  .intro-video-wrap .intro-overlay-bar .intro-logo {
    flex: unset;
    text-align: left;
  }
  .intro-video-wrap .intro-overlay-bar .intro-action {
    position: relative;
    /* no absolute */
    right: auto;
  }
}
.fadeOut {
  animation: fadeOutUp 1.5s forwards;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-150%);
  }
}
/* Blur site content while intro is active */
#page.intro-blur {
  filter: blur(1px);
  opacity: 0.2;
  transition: 1s all;
}
/* After intro is hidden */
#page {
  opacity: 1;
  filter: none;
  transition: 1s all;
}
.header-dropdown {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 9;
}
.header-dropdown .btn-border {
  background-color: transparent;
  border: 1px solid #899a9e;
  font-size: 14px;
  color: #899a9e;
  font-weight: 400;
  font-family: "Darker Grotesque", sans-serif;
  padding: 0 30px 2px 10px;
  position: relative;
}
.header-dropdown .btn-border::before {
  background-image: url(../images/header-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
  width: 5px;
  height: 100%;
  content: "";
  position: absolute;
  right: 7px;
  top: 0;
  background-size: 100%;
  z-index: 9;
}
.header-dropdown .btn-border::after {
  background-color: #899a9e;
  width: 20px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}
.header-navbar {
  margin: 0px auto;
  text-align: center;
  flex-direction: column;
  position: relative;
}
.logo-header-block {
  background-color: #dce4e4;
  width: 100%;
  padding: 64px;
  height: auto;
  transition: all 0.3s ease;
  overflow: hidden;
}
.logo-header-block a img {
  width: 300px;
}
.navbar {
  padding: 0;
}
.navbar .nav-link {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 33px;
  font-weight: 300;
  line-height: normal;
  color: #034148 !important;
}
.navbar-nav {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  gap: 90px;
  position: relative;
}
.navbar-nav .logo-shrink {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 40px;
  transition: all 0.8s ease;
  width: 25px;
  visibility: hidden;
  opacity: 0;
}
.navbar-nav .logo-shrink img {
  width: 100%;
}
.navbar-nav .nav-item {
  margin-left: 7px;
  margin-right: 7px;
}
.navbar-nav .nav-item a:hover img {
  filter: brightness(0.8);
}
nav.navbar.shrink .navbar-nav .logo-shrink {
  visibility: visible;
  opacity: 1;
}
nav.navbar.shrink .header-navbar .nav-link {
  transition: all 0.3s ease;
  font-size: 30px;
}
@media screen and (max-width: 1300px) {
  nav.navbar.shrink .header-navbar .nav-link {
    font-size: 24px;
  }
}
nav.navbar.shrink .navbar-brand img {
  width: 120px;
  transition: all 0.3s ease;
}
nav.navbar.shrink .logo-header-block {
  padding: 0px 0;
  height: 0px;
}
.mobile-logo {
  display: none;
  padding: 10px;
}
.header-blank {
  height: 324px;
}
.header-blank.shrink {
  height: 213px;
}
.navbar-light .navbar-nav .nav-link {
  transition: all 0.3s ease;
  padding-top: 0;
}
.navbar-light .navbar-toggler {
  background: transparent;
  border: none;
}
.navbar-light .navbar-toggler span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: #034148;
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.navbar-light .navbar-toggler:hover span {
  background: #034148;
}
.navbar-light .navbar-toggler:focus span {
  background: #034148;
}
.navbar-light .navbar-toggler[aria-expanded="true"] span:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-light .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
  opacity: 0;
}
.navbar-light .navbar-toggler[aria-expanded="true"] span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navbar-light .navbar-toggler[aria-expanded="false"] span {
  transform: none;
  opacity: 1;
}
.navbar-light .navbar-toggler-icon {
  background-image: url(../images/icon-mob.png);
  background-size: auto;
}
nav.navbar .navbar-brand img {
  transition: all 0.3s ease;
}
.navbar-toggler {
  padding: 10px !important;
  border-radius: 0;
}
@media screen and (max-width: 1340px) {
  .navbar-nav {
    gap: 30px;
  }
  .header-dropdown {
    right: 10px;
    top: 8px;
    margin: 0 auto;
    text-align: center;
  }
  .header-dropdown .btn-border {
    font-size: 12px;
    padding: 0 22px 2px 3px;
  }
}
@media screen and (max-width: 991px) {
  .navbar-nav .logo-shrink {
    display: none;
  }
  .header-dropdown {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .header-dropdown .btn-border {
    font-size: 12px;
    padding: 0 22px 2px 3px;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-nav {
    gap: 0px;
    margin: 0;
  }
  .navbar-nav li {
    border-bottom: 1px solid #09454c;
  }
  .header-dropdown {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .header-dropdown .btn-border {
    font-size: 12px;
    padding: 0 22px 2px 3px;
    margin: 0 auto;
  }
  .logo-header-block {
    padding: 0;
    display: none;
  }
  .navbar {
    background-color: #dce4e4 !important;
    border-bottom: 2px solid;
  }
  .mobile-logo {
    display: block;
    padding-bottom: 0;
    padding-top: 0;
  }
  .header-blank {
    display: none;
  }
  nav.navbar img {
    transition: all 0.3s ease;
    width: 50px;
  }
  nav.navbar.shrink img {
    width: 50px;
    transition: all 0.3s ease;
  }
  nav.navbar.shrink .logo-header-block {
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav {
    justify-content: space-around;
    gap: 0px;
    margin: 0;
  }
  .navbar-nav li {
    border-bottom: 1px solid #09454c;
  }
  .logo-header-block {
    padding: 0;
    display: none;
  }
  .navbar {
    background-color: #dce4e4 !important;
    border-bottom: 2px solid;
  }
  .mobile-logo {
    display: block;
    padding-bottom: 0;
    padding-top: 0;
  }
  .header-blank {
    display: none;
  }
  nav.navbar img {
    transition: all 0.3s ease;
    width: 70px;
  }
  nav.navbar.shrink img {
    width: 50px;
    transition: all 0.3s ease;
  }
  nav.navbar.shrink .logo-header-block {
    padding: 0;
  }
}
@media screen and (min-width: 340px) and (max-width: 420px) {
  .header-blank {
    display: none;
  }
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #034148;
  background: #e5ddd4;
}
h1 {
  margin-left: 0;
  font-family: "Darker Grotesque", sans-serif;
  color: #034148;
  font-weight: 300;
  font-size: 66.5px;
  line-height: normal;
}
h2 {
  margin-left: 0;
  font-family: "Darker Grotesque", sans-serif;
  color: #034148;
  font-weight: 300;
  font-size: 49px;
  line-height: 0.9;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 44px;
  }
}
h3 {
  margin-left: 0;
  font-family: "Darker Grotesque", sans-serif;
  color: #034148;
  font-weight: 300;
  font-size: 112px;
  display: grid;
}
h4 {
  font-weight: 500;
  color: #034148;
  font-size: 20px;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
}
h5 {
  font-weight: 500;
  font-size: 36px;
  color: #034148;
  font-family: "Darker Grotesque", sans-serif;
}
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  margin-bottom: 27px;
  line-height: 27px;
  color: #034148;
  font-size: 18px;
}
img {
  max-width: 100%;
}
.small-text {
  font-size: 24px;
  font-weight: 300;
  display: ruby-text;
  margin-top: -12px;
}
.number-space {
  margin-bottom: 70px;
}
.container {
  max-width: 1400px;
  padding-right: 30px;
  padding-left: 30px;
}
.container-medium {
  max-width: 1200px;
}
.container-small {
  max-width: 760px;
}
#page {
  background: #e5ddd4;
  position: relative;
}
#page .site-inner {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
  margin: 0 auto;
  overflow-x: hidden;
}
.navbar {
  width: 100%;
  max-width: 1920px;
  padding: 0px;
  margin: 0 auto;
}
.btn {
  background-color: #EEC40E;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  padding: 13px 100px;
  border-radius: 0;
  margin-top: 40px;
}
.btn:hover {
  color: #fff;
}
.btn-dark-border {
  background-color: transparent;
  border: 1px solid #034148;
  color: #034148;
  text-decoration: none;
  padding: 5px 70px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}
.btn-dark-border:hover {
  text-decoration: none;
  color: #034148;
}
.btn-border {
  border: 1px solid #034148;
  font-size: 24px;
  color: #034148;
  font-weight: 400;
  font-family: "Darker Grotesque", sans-serif;
  padding: 0 60px 4px 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .btn-border {
    display: block;
  }
}
.btn-border::before {
  background-image: url(../images/dark-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
  width: 7px;
  height: 100%;
  content: "";
  position: absolute;
  right: 10px;
  top: 1px;
  background-size: 100%;
}
.btn-border:hover {
  text-decoration: none;
  color: #034148;
}
.btn-border img {
  width: 8px;
  object-fit: scale-down;
}
.heading-position {
  position: absolute;
  top: 15%;
  left: 17%;
}
.unique-section {
  padding-top: 350px;
  position: relative;
}
.no-margin {
  margin: 0 !important;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 40px;
  }
  .newlobby-section h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 75px;
  }
  .bg-img {
    margin-top: 80px;
  }
  .small-text {
    margin-bottom: 0px;
  }
  .btn-dark-border {
    padding: 5px 10px;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .bg-img {
    margin-top: 112px;
  }
}
/*Map Section Start*/
.map-container {
  width: 100%;
  position: relative;
  border-bottom: 15px solid #034148;
}
.map-container .wpgmza_map {
  width: 100%;
  float: unset !important;
  height: 800px !important;
}
.map-container .wpgmza_map div.gm-style > div div[style*="999999"] {
  pointer-events: none !important;
}
.map-container .wpgmza_map div.gm-style div[style*="1000000"],
.map-container .wpgmza_map div.wpgmza_map div.gm-style div[style*="1000001"],
.map-container .wpgmza_map div.wpgmza_map div.gm-style div.gm-style-cc a[title*="errors"] {
  display: none !important;
}
.map-container .wpgmza_map div.gm-style div.gm-style-cc div {
  background-color: transparent !important;
}
.map-container .wpgmza-marker-listing-category-filter {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: unset;
  z-index: 999;
  background-color: #034148;
  padding: 10px 10px;
}
.map-container .wpgmza-marker-listing-category-filter > span:first-child {
  display: none !important;
}
.map-container .wpgmza-marker-listing-category-filter > div {
  margin-top: 0px !important;
}
.map-container .wpgmza-marker-listing-category-filter ul.wpgmza_cat_ul {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: 0px;
}
.map-container .wpgmza-marker-listing-category-filter li {
  display: flex;
  padding: 5px 0;
  align-items: center;
}
.map-container .wpgmza-marker-listing-category-filter li label {
  font-family: Hind, sans-serif;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 0px;
}
.map-container .wpgmza-marker-listing-category-filter li input[type=checkbox] {
  opacity: 0;
  cursor: pointer;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder:before {
  content: '.';
  color: transparent;
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  border-radius: 50%;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder label {
  padding-left: 10px;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder_1:before {
  background-color: #964B00;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder_2:before {
  background-color: #00BFFF;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder_3:before {
  background-color: #008000;
}
.map-container .wpgmza-marker-listing-category-filter li.wpgmza_cat_checkbox_item_holder_0:before {
  background-color: #ffffff;
}
.map-container p.wpgmza_infowindow_address {
  font-size: 12px;
  margin-bottom: 0;
}
.map-container p.wpgmza_infowindow_title {
  font-family: Hind, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.map-container p.wpgmza_infowindow_categories {
  margin-bottom: 7px;
}
.map-container .wpgmza_infowindow_description p {
  margin-bottom: 0px;
}
.map-container .gm-style .gm-style-iw-t::after {
  background: #ffffff;
  width: 12px;
  height: 12px;
}
.map-container .gm-style-iw.gm-style-iw-c button {
  top: -4px;
  right: -4px;
}
.map-container .wpgmza_cat_checkbox_holder {
  height: auto !important;
  padding: 0px;
}
@media screen and (max-width: 800px) {
  .map-container .wpgmza_map {
    height: 550px !important;
  }
}
.urban-block .container-medium {
  position: relative;
  z-index: 9;
}
#amenity360Modal .modal-xl,
#virtualTourModal .modal-xl {
  max-width: 1600px;
}
@media screen and (max-width: 1660px) {
  #amenity360Modal .modal-xl,
  #virtualTourModal .modal-xl {
    max-width: 95%;
  }
}
/*urban section Start*/
.urban-section {
  background-color: #eee9e3;
  border-top: 6px solid #39585f;
}
.urban-section .urban-block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.urban-section .urban-block::after {
  background-image: url(../images/line-small.png);
  background-repeat: repeat;
  background-position: top;
  width: 107px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .urban-section .urban-block:before {
    width: 65px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .urban-section .urban-block:before {
    width: 65px;
  }
}
/*urban section End*/
/*Number Of floor start*/
.number-of-fllor-section {
  background-color: #d6c9ba;
  padding-bottom: 80px;
  padding-top: 80px;
}
.number-of-fllor-section .highlight-flex-jcc {
  justify-content: center;
}
.number-of-fllor-section .highlight-flex-jcc .highlight-item {
  padding-top: 35px;
  padding-bottom: 35px;
}
.number-of-fllor-section .fitwel-logo {
  line-height: 124px;
  margin-bottom: 0.5rem;
}
.number-of-fllor-section .fitwel-logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 768px) {
  .number-of-fllor-section {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .number-of-fllor-section .highlight-flex-jcc {
    justify-content: center;
  }
  .number-of-fllor-section .highlight-flex-jcc .highlight-item {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
/*Number Of floor End*/
/*Upcoming Enhancements Start*/
.upcoming-section {
  background-color: #eee9e3;
  padding-bottom: 80px;
  padding-top: 80px;
}
.upcoming-section h4 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 991px) {
  .upcoming-section .no-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .upcoming-section h2 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .upcoming-section .pr-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .upcoming-section .pl-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .upcoming-section .container {
    max-width: 760px;
  }
}
/*Upcoming Enhancements End*/
/*Upcoming Feature STart*/
.upcoming-feature {
  display: flex;
  justify-content: center;
  gap: 40px 0px;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .upcoming-feature {
    width: 100%;
  }
}
.upcoming-feature .feature-items {
  width: 25%;
}
.upcoming-feature .feature-items .feature-text {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #39585f;
  line-height: 20px;
  margin-top: 20px;
}
.upcoming-feature .feature-items img {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .upcoming-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .upcoming-feature .feature-items {
    width: 100%;
  }
  .upcoming-feature .feature-items .feature-text br {
    display: none;
  }
}
/*Upcoming Feature End*/
/*newlobby Section Start*/
.newlobby-section {
  position: relative;
  height: 594px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.newlobby-section:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.newlobby-section h1 {
  font-size: 74px;
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .newlobby-section h1 {
    font-size: 44px;
  }
}
.newlobby-section .play-icon button {
  background-color: transparent;
  border: 0;
}
.newlobby-section video {
  width: 100%;
}
.newlobby-section .close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #dce4e4 !important;
  opacity: 9;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-weight: normal;
  z-index: 9;
}
.newlobby-section .close:hover {
  opacity: 9 !important;
}
.newlobby-section .close span {
  text-shadow: none;
}
.newlobby-section .modal-body {
  padding-bottom: 0 !important;
}
/*newlobby Section End*/
/*Brochure Section End*/
.brochure-section {
  background-color: #8babab;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
/*Brochure Section End*/
.home-map-container {
  position: relative;
  width: 100%;
  height: 750px;
  border-bottom: 10px solid #034148;
}
/*elevating section Start*/
.elevating-section {
  background-color: #c4d6d6;
  border-top: 6px solid #044148;
}
.elevating-section .elevating-block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.elevating-section .elevating-block::after {
  background-image: url(../images/line-large.png);
  background-repeat: repeat;
  background-position: top;
  width: 107px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100%;
  opacity: 0.2;
}
@media only screen and (max-width: 768px) {
  .elevating-section .elevating-block:before {
    width: 65px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .elevating-section .elevating-block:before {
    width: 65px;
  }
}
/*elevating section End*/
/*Streat Entry Section Start*/
.streat-entry-section .streat-block {
  display: flex;
  justify-content: space-between;
  /* Target only special panels */
}
@media only screen and (max-width: 840px) {
  .streat-entry-section .streat-block {
    flex-direction: column;
  }
}
.streat-entry-section .streat-block p {
  font-weight: 300;
  font-size: 21px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .streat-entry-section .streat-block p {
    font-size: 18px;
  }
}
.streat-entry-section .streat-block .streat-items {
  background-color: #36676d;
  padding: 80px;
}
@media screen and (max-width: 1300px) {
  .streat-entry-section .streat-block .streat-items {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .streat-entry-section .streat-block .streat-items {
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .streat-entry-section .streat-block .streat-items {
    padding: 30px;
  }
}
.streat-entry-section .streat-block [data-aos="fade-right"] {
  transform: translate3d(-300px, 0, 0);
  /* default is -100px */
}
.streat-entry-section .streat-block [data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}
.streat-entry-section .streat-block [data-aos="fade-left"] {
  transform: translate3d(300px, 0, 0);
  /* default is 100px */
}
.streat-entry-section .streat-block [data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}
.streat-entry-section img {
  width: 60%;
  object-fit: cover;
}
@media only screen and (max-width: 840px) {
  .streat-entry-section img {
    width: 100%;
    order: 1;
  }
}
@media only screen and (max-width: 840px) {
  .streat-entry-section img {
    order: 1;
  }
  .streat-entry-section .streat-items {
    order: 2 ;
  }
}
.streat-entry-section .streat-right img {
  order: 1;
}
.streat-entry-section .streat-right .streat-items {
  order: 2 ;
  background-color: #044148;
}
/*Streat Entry Section End*/
.amenity-floor-section {
  background: #EBE4DC;
  padding-top: 25px;
}
.amenity-floor-section .amenity-floor-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}
.amenity-floor-section .amenity-floor-wrap img {
  width: 100%;
  display: block;
}
.amenity-floor-section .amenity-floor-wrap .map-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .amenity-floor-section .amenity-floor-wrap .map-icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 760px) {
  .amenity-floor-section .amenity-floor-wrap .map-icon {
    width: 20px;
    height: 20px;
  }
}
.amenity-floor-section .amenity-floor-wrap .map-icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.amenity-floor-section .amenity-floor-wrap .map-icon:hover img {
  transform: scale(1.1);
}
.Spec-section {
  background-color: #D1DFE0;
  padding-bottom: 80px;
  padding-top: 80px;
}
.Spec-section .full-w-image img {
  margin: 0 auto;
}
.suit-plan-section .suit-plan-items {
  display: flex;
  justify-content: space-between;
  border-top: 10px solid #054148;
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items {
    flex-direction: column;
  }
}
.suit-plan-section .suit-plan-items img.left-img {
  width: 60%;
  object-fit: cover;
  height: 520px;
}
@media only screen and (max-width: 1024px) {
  .suit-plan-section .suit-plan-items img.left-img {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items img.left-img {
    width: 100%;
    object-fit: unset;
    height: auto;
  }
}
.suit-plan-section .suit-plan-items .suit-plan-details {
  background-color: #e4cfc2;
  width: 40%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .suit-plan-section .suit-plan-items .suit-plan-details {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items .suit-plan-details {
    width: 100%;
  }
}
.suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr {
  width: 50%;
}
@media screen and (max-width: 1300px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr {
    width: 100%;
  }
}
.suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr h4 {
  background-color: #a65e32;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: normal;
  padding: 0 20px 5px 20px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr h4 {
    font-size: 28px;
  }
}
.suit-plan-section .suit-plan-items .suit-plan-details .suit-plan-sqr .plan-number {
  font-size: 24px;
  color: #034148;
  font-weight: 400;
  font-family: "Darker Grotesque", sans-serif;
}
.suit-plan-section .suit-plan-items .suit-plan-details .view-plan {
  display: flex;
  flex-direction: column;
  width: 48%;
  gap: 15px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .view-plan {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .suit-plan-section .suit-plan-items .suit-plan-details .view-plan {
    width: 100%;
  }
}
.suit-plan-section .suit-plan-items .suit-plan-details .view-plan a {
  border: 1px solid #034148;
  font-size: 24px;
  color: #034148;
  font-weight: 400;
  text-decoration: none;
  font-family: "Darker Grotesque", sans-serif;
  padding: 0 10px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}
.suit-plan-section .suit-plan-items .suit-plan-details .view-plan a img {
  width: 8px;
  object-fit: scale-down;
}
.suit-plan-section .suit-plan-items:nth-child(2n) .suit-plan-details {
  background-color: #c9d0d2;
}
.suit-plan-section .suit-plan-items:nth-child(2n) .suit-plan-details .suit-plan-sqr h4 {
  background-color: #4a6369;
}
.suit-plan-section .suit-plan-items:nth-child(3n) .suit-plan-details {
  background-color: #b3d1d8;
}
.suit-plan-section .suit-plan-items:nth-child(3n) .suit-plan-details .suit-plan-sqr h4 {
  background-color: #5096a5;
}
/*Connect with Us Start*/
.connect-with-section {
  position: relative;
  background-color: #e2ecec;
  padding-top: 60px;
  padding-bottom: 80px;
}
.connect-with-section h1 {
  margin-bottom: 20px;
}
.connect-with-section .contact-detail-block .title-name {
  font-size: 40px;
  line-height: 1;
  color: #034148;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}
.connect-with-section .contact-detail-block .address-name {
  margin-bottom: 6px;
  font-size: 16px;
  color: #034148;
  font-weight: 400;
}
.connect-with-section .contact-detail-block .mobile-number {
  font-size: 16px;
  color: #034148;
  font-weight: 500;
}
.connect-with-section .contact-detail-block .mobile-number a {
  list-style: none;
  color: inherit;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}
.connect-with-section .contact-detail-block .mail-id {
  font-size: 16px;
  color: #034148;
  font-weight: 500;
}
.connect-with-section .contact-detail-block .mail-id a {
  color: inherit;
  list-style: none;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .connect-with-section .col-lg-4:last-child .contact-detail-block {
    margin-bottom: 0;
  }
  .connect-with-section .contact-detail-block {
    margin-bottom: 30px;
    text-align: center;
  }
  .connect-with-section .contact-detail-block .address-name {
    font-size: 14px;
  }
  .connect-with-section .contact-detail-block .mobile-number {
    font-size: 14px;
  }
  .connect-with-section .contact-detail-block .mail-id {
    font-size: 14px;
  }
  .connect-with-section h1 {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .connect-with-section .col-lg-4:last-child .contact-detail-block {
    margin-bottom: 0;
  }
  .connect-with-section .contact-detail-block {
    margin-bottom: 30px;
    text-align: center;
  }
  .connect-with-section h1 {
    margin-bottom: 30px;
    text-align: center;
  }
}
.svg-availability-section {
  background: #E3EBED;
  padding: 60px 0 0 0;
}
.svg-availability-section h1 {
  margin-bottom: 0;
}
.svg-availability-section .svg-availability-wrap {
  width: 100%;
  max-width: 1360px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
}
.svg-availability-section .svg-availability-wrap .sa-svg-image {
  width: 50%;
}
@media only screen and (max-width: 1150px) {
  .svg-availability-section .svg-availability-wrap .sa-svg-image {
    width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .svg-availability-section .svg-availability-wrap .sa-svg-image {
    width: 68%;
  }
}
.svg-availability-section .svg-availability-wrap .sa-svg-image .svg-floor {
  fill: transparent;
}
.svg-availability-section .svg-availability-wrap .sa-svg-image .svg-floor.active-space {
  fill: rgba(8, 69, 75, 0.5);
  cursor: pointer;
  transition: 0.3s all;
}
.svg-availability-section .svg-availability-wrap .sa-svg-image .svg-floor.active-space:hover,
.svg-availability-section .svg-availability-wrap .sa-svg-image .svg-floor.active-space.hover-active {
  fill: rgba(8, 69, 75, 0.8);
}
.svg-availability-section .svg-availability-wrap .sas-availability {
  flex-grow: 1;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container {
  max-width: 520px;
  margin-top: 226px;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single {
  border: 1px solid #034148;
  border-bottom: none;
  padding: 6px 5px;
  cursor: pointer;
  min-height: 29px;
  background: transparent;
  transition: 0.3s all;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-yes:hover,
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-yes.hover-active {
  background: #034148;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-yes:hover *,
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-yes.hover-active * {
  color: white;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.available-first-floor {
  background: #b2cdd4;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.available-first-floor * {
  color: #034148;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.available-second-floor {
  background: #555A5E;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.available-second-floor * {
  color: white;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single:last-child {
  border-bottom: 1px solid #034148;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-no {
  cursor: default;
  border: none;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-no .af-single-wrap {
  display: none;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single.is-available-no-1 {
  border-top: 1px solid #034148;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single .af-single-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single .af-single-wrap .af-left,
.svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container .available-floor-single .af-single-wrap .af-right {
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 960px) {
  .svg-availability-section {
    padding: 40px 0;
  }
  .svg-availability-section .svg-availability-wrap {
    flex-flow: wrap;
  }
  .svg-availability-section .svg-availability-wrap .sa-svg-image {
    width: 100%;
  }
  .svg-availability-section .svg-availability-wrap .sas-availability {
    width: 100%;
  }
  .svg-availability-section .svg-availability-wrap .sas-availability .availability-listing-container {
    margin: 0 auto;
  }
}
.availablity-floor-modal .modal-content {
  background: white !important;
  border-radius: 25px !important;
  overflow: hidden;
}
.availablity-floor-modal .modal-header {
  padding: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}
.availablity-floor-modal .modal-header .close {
  padding: 5px;
  color: #034148 !important;
  margin: 0px;
  opacity: 1;
}
.availablity-floor-modal .modal-header .btn {
  margin-top: 0px;
  color: white;
  background: #034148;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  appearance: none;
}
.drivetimes-section {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
}
.drivetimes-section .drivetime-flex-c {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.drivetimes-section h1 {
  color: #cddbdb;
}
.drivetimes-section p {
  color: #cddbdb;
}
.drivetimes-section .drivetime-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 10px;
}
.drivetimes-section .drivetime-block img {
  width: 34px;
}
.drivetimes-section ul {
  margin: 0;
  padding: 0;
}
.drivetimes-section ul li {
  padding: 10px;
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
  color: #034148;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .drivetimes-section ul li {
    font-size: 15px;
  }
}
.drivetimes-section ul li span {
  font-size: inherit;
}
.drivetimes-section ul li span.title {
  width: max-content;
  max-width: 400px;
}
@media only screen and (max-width: 768px) {
  .drivetimes-section ul li span.title {
    max-width: 250px;
  }
}
@media only screen and (max-width: 490px) {
  .drivetimes-section ul li span.title {
    max-width: 170px;
  }
}
.drivetimes-section ul li span.line {
  position: relative;
  flex-grow: 1;
}
.drivetimes-section ul li span.line:before {
  height: 1px;
  width: 100%;
  top: 15px;
  content: "";
  position: absolute;
  background: #034148;
}
.drivetimes-section ul li span.mins {
  min-width: 63px;
}
/*location section Start*/
.location-section {
  background-color: #e2d9cf;
  border-top: 6px solid #39585f;
}
.location-section .location-block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.location-section .location-block::after {
  background-image: url(../images/line-location.png);
  background-repeat: repeat;
  background-position: top;
  width: 107px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .location-section .row {
    position: relative;
    z-index: 9;
  }
  .location-section .location-block:before {
    width: 65px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .location-section .row {
    position: relative;
    z-index: 9;
  }
  .location-section .location-block:before {
    width: 65px;
  }
}
@media screen and (min-width: 991px) and (max-width: 1365px) {
  .location-section .row {
    position: relative;
    z-index: 9;
  }
}
.shop-location-section {
  background-color: #f3efea;
  padding-top: 80px;
  padding-bottom: 80px;
}
.shop-location-section .upcoming-feature .feature-items {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  .shop-location-section .upcoming-feature .feature-items {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .shop-location-section .upcoming-feature .feature-items img {
    width: 50%;
  }
}
.shop-location-section .upcoming-feature .feature-items .feature-text {
  font-weight: 300;
  font-size: 49px;
  line-height: 0.9;
}
.shop-location-section .upcoming-feature .feature-items .feature-text span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  line-height: 20px;
  margin-top: 5px;
}
/*location section End*/
/*On Site Section Start*/
.on-site-section .onsite-top {
  display: flex;
  width: 100%;
}
.on-site-section .onsite-top .onsite-item {
  width: 50%;
  position: relative;
}
.on-site-section .onsite-top .onsite-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 32, 19, 0.4);
  /* black overlay with 40% opacity */
}
.on-site-section .onsite-top .onsite-item img {
  width: 100%;
}
.on-site-section .onsite-top .onsite-item .onsite-text {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 400;
  font-size: 49px;
  line-height: 0.9;
  color: #fff;
  font-family: "Darker Grotesque", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .on-site-section .onsite-top .onsite-item .onsite-text {
    font-size: 30px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) {
  .on-site-section .onsite-top .onsite-item .onsite-text {
    font-size: 20px;
    font-weight: 700;
  }
}
.on-site-section .onsite-top .onsite-item .onsite-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 5px;
  letter-spacing: 2px;
}
.on-site-section .onsite-bottom {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .on-site-section .onsite-bottom {
    flex-wrap: wrap;
  }
}
.on-site-section .onsite-bottom .onsite-item {
  width: 33.33%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .on-site-section .onsite-bottom .onsite-item {
    flex: 1 1 calc(50% - 0px);
  }
}
.on-site-section .onsite-bottom .onsite-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 32, 19, 0.4);
  /* black overlay with 40% opacity */
}
.on-site-section .onsite-bottom .onsite-item img {
  width: 100%;
}
.on-site-section .onsite-bottom .onsite-item .onsite-text {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 400;
  font-size: 49px;
  line-height: 0.9;
  color: #fff;
  font-family: "Darker Grotesque", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .on-site-section .onsite-bottom .onsite-item .onsite-text {
    font-size: 30px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) {
  .on-site-section .onsite-bottom .onsite-item .onsite-text {
    font-size: 20px;
    font-weight: 700;
  }
}
.on-site-section .onsite-bottom .onsite-item .onsite-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 5px;
  letter-spacing: 2px;
}
/*On Site Section End*/
/*elevating section Start*/
.track-record-section {
  background-color: #044148;
  padding-bottom: 80px;
  padding-top: 80px;
}
.track-record-section .logo-text {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 40px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .track-record-section .logo-text {
    flex-direction: column;
    align-items: center;
  }
}
.track-record-section .logo-text img {
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .track-record-section .col-md-12 {
    margin: 15px 0;
  }
  .track-record-section .mb-5 {
    margin-bottom: 0 !important;
  }
  .track-record-section .pr-5,
  .track-record-section .pl-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.contact-detail::before {
  background-image: url(../images/line-leasing.png);
  background-repeat: repeat;
  background-position: top;
  width: 107px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  background-size: 100%;
}
.contact-detail .contact-detail-block .title-name {
  font-size: 40px;
  line-height: 36px;
  margin-bottom: 25px;
}
.contact-detail .contact-detail-block .mobile-number {
  font-weight: 600;
  font-size: 36px;
  font-family: "Darker Grotesque", sans-serif;
  display: inline-block;
  margin-bottom: 30px;
}
.contact-detail .contact-detail-block .mail-id {
  font-size: 17px;
  font-weight: 400;
}
.contact-detail .contact-detail-block .mail-id a {
  line-height: 20px;
}
.contacts {
  background-color: #cadbdb;
}
.contacts::before {
  background-image: url(../images/line-contacts.png);
}
.contacts .title-name {
  font-size: 40px;
  line-height: 36px;
  margin-bottom: 25px;
}
.contacts .mobile-number {
  font-weight: 600;
  font-size: 36px;
  font-family: "Darker Grotesque", sans-serif;
  display: inline-block;
  margin-bottom: 30px;
}
.contacts .mail-id {
  font-size: 17px;
  font-weight: 400;
}
.contacts .mail-id a {
  line-height: 20px;
}
.footer-block {
  float: left;
  width: 100%;
  background-color: #a9c3c3;
  padding: 40px 0;
}
.footer-block .copyright-text {
  font-size: 12px;
  margin-left: 50px;
  color: #fff;
}
.footer-block .copyright-text a {
  font-size: inherit;
  font-weight: inherit;
  color: #fff;
  text-decoration: none;
}
.footer-block .container {
  max-width: 90%;
}
.footer-block h6 span {
  font-weight: 400;
}
.footer-block .modal-body {
  padding: 0;
  color: #fff;
}
.footer-block .modal-body h2 {
  color: #fff;
}
.footer-block .modal-body h2 span {
  position: absolute;
  top: 15px;
  right: 15px;
}
.footer-block .body-top {
  background-color: #044148;
  padding: 40px;
  position: relative;
}
.footer-block .body-top p {
  font-size: 16px;
  font-weight: 400;
}
.footer-block .body-top a {
  color: #2cfcfd;
  text-decoration: none;
}
.footer-block .body-footer {
  padding: 40px;
  background-color: #3e6b71;
}
.footer-block .body-footer p {
  font-size: 16px;
  font-weight: 400;
}
.footer-block .property-management {
  background-color: #8da6a9;
  display: flex;
  gap: 60px;
  padding: 20px 40px;
  color: #044148;
}
.footer-block .property-management strong {
  font-size: 28px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
}
.footer-block .property-management span {
  font-size: 34px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 500;
  margin-left: 20px;
}
.footer-block .close {
  opacity: 9;
}
.footer-block .close img {
  width: 40px;
}
.footer-block .modal-lg {
  max-width: 940px;
}
.footer-block .modal-content {
  border-radius: 15px;
  overflow: hidden;
  background-color: transparent;
}
.footer-btn {
  display: flex;
  justify-content: end;
  flex-direction: column;
  gap: 5px;
  width: max-content;
}
.footer-btn .btn {
  background-color: transparent;
  font-weight: 300;
  font-size: 15px;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  margin: 0;
}
.footer-btn .btn:focus {
  outline: none;
  box-shadow: none;
}
.cousins-logo-block {
  align-items: end;
  text-align: end;
}
.cousins-logo-img {
  margin-bottom: -10px;
}
.modal-video-body {
  max-width: 1400px !important;
}
@media only screen and (max-width: 768px) {
  .footer-btn {
    justify-content: space-evenly;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .footer-btn .btn {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-block {
    text-align: center;
  }
  .footer-block img {
    margin-bottom: 50px;
  }
  .footer-block .copyright-text {
    margin: 0;
  }
  .footer-block .property-management {
    flex-direction: column;
    padding: 20px;
    text-align: left;
    gap: 20px;
  }
  .footer-block .property-management strong {
    font-size: 24px;
  }
  .footer-block .property-management span {
    font-size: 28px;
  }
  .cousins-logo-block {
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .footer-btn .btn {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
    width: auto;
  }
  .footer-block .copyright-text {
    margin: 20px 0 0 0;
    text-align: center;
  }
}
@media screen and (min-width: 340px) and (max-width: 420px) {
  .cousins-logo-block {
    align-items: center;
    text-align: center;
  }
}
.pano-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.pano-modal.active {
  display: flex !important;
}
.pano-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 1600px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.pano-modal .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}
.pano-modal .modal-content .pano-viewer {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  background: #000;
  position: relative;
}
.pano-modal .modal-content .pano-viewer > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=master.css.map */