/*
Theme Name: Nucleus
Theme URI: https://beswifty.com/
Author: Team Swifty
Author URI: https://beswifty.com/
Version: 1.0.0
License: GNU General Public License v2 or later
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

/* ===== Global Styles ===== */
html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-font {
  font-family: "Inter", sans-serif;
}

h2.section-title {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
  position: relative;
}

span.section-sub-title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin: 15px auto;
  text-transform: uppercase;
  display: block;
}

h2.small-font {
  font-size: 1.125rem;
}

h1.hero-title {
  font-size: 3.38rem;
}

h1.section-title {
  font-size: 3.38rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 9;
  position: relative;
  padding: 0 20px;
}


.center-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form select,
form textarea {
  border-bottom: 1px solid;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 20px;
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}
a {
  cursor: pointer;
}

a.btn:hover {
  opacity: 0.75;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/*  for long header css  add this css in style.css below the menu*/
.hidemenu {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
}
.mobile-only {
  display: none;
}

/* ====== Header styles ===== */
header {
  display: flex;
  flex-flow: wrap;
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: all 0.5s ease;
  flex-direction: column;
  padding: 25px 60px;
  background-color: transparent;
}
.header.collapsed {
  padding: 15px 60px;
}

header .container {
  max-width: 100%;
}

.header-contact {
  padding: 10px 0px;
}
.header-contact span {
  font-weight: 300;
}
.header-contact .header-call a {
  font-weight: 600;
}
.header-contact-inner span {
  font-weight: 500;
  font-size: 1.125rem;
}

.header-contact-inner span a {
  font-weight: 700;
}

header .fixed-header-bg {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

header.collapsed .fixed-header-bg {
  opacity: 1;
}

header .main-menu-wrapper {
  flex: 1;
  display: inline-block;
  vertical-align: top;
}

header ul.main-menu {
  display: flex;
  margin: 0;
  color: #fff;
  flex-flow: row;
  gap: 15px;
}

header ul.main-menu li.menu-item {
  width: auto;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  padding: 14px;
}
header ul.main-menu li.menu-item .menu-item-link:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: all 0.3s ease 0s;
  border-bottom: 2px solid;
}
header ul.main-menu li.menu-item .menu-item-link:hover::after {
  width: 100%;
}

header .menu-trigger {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  transition: all 0.5s ease;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: right;
  top: 0;
  right: 0;
  color: #4e4e4e !important;
  z-index: 99;
  max-width: 48px;
  margin-left: auto;
}
header .menu-trigger .burger-icon svg {
  max-width: 100%;
}
.mobile-menu ul.sub-menu{
  padding-left: 0;
}
.mob-bg{
  display: none;
}

header .logo-section {
  display: inline-block;
  height: 100px;
  vertical-align: top;
  position: relative;
  z-index: 9;
}

header .logo-section .header-logo{
  height: 100%;
}

header .logo-section a.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .logo-section a.logo img {
  width: 100%;
  transition: all 0.5s ease 0s;
  height: 100%;
  max-height: 80px;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

header.collapsed .logo-section a.logo img {
  max-height: 80px;
  transition: all 0.5s ease;
}

.main-menu-panel {
  display: block;
  position: fixed;
  width: 100%;
  max-width: 375px;
  height: 100%;
  padding: 25px 40px;
  z-index: 9999;
  transition: all 0.5s ease 0s;
  top: 0;
  right: -100%;
  transform: translateX(0);
  overflow-x: hidden;
}

.main-menu-panel.open {
  right: 0;
}

.main-menu-panel .header-logo-text a.main-logo {
  max-width: 150px;
}

.main-menu-panel a.main-logo {
  max-width: 200px;
  margin: 0 auto;
  display: block;
  text-align: center;
}
header .logo-section .header-logo-text a.logo {
  padding: 5px 0;
}
header .logo-section .text-logo a.logo {
  font-size: 1.7rem;
  margin: 0px;
  font-weight: 700;
}
.main-menu-panel .header-logo-img a.main-logo img {
  max-height: 80px;
      width: 100%;
    object-fit: contain;
    height: 100%;
}
.main-menu-panel.header-logo-img a.main-logo {
  max-width: 200px;
}
.main-menu-panel .header-logo-text .text-logo a.main-logo {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 10px;
}
header .logo-section a.sticky-logo {
  display: none;
  transition: all 0.5s ease 0s;
}

header.collapsed .logo-section a.sticky-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header.collapsed .logo-section a.main-logo {
  display: none;
  transition: all 0.5s ease 0s;
}

header .right-menu {
  display: flex;
  flex-flow: column;
  justify-content: center;
  flex-grow: 1;
}

header .right-menu .right-menu-top {
  text-align: right;
  padding-right: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

header .menu-tab {
  position: fixed;
  z-index: 999;
  width: 135px;
  height: 60px;
  top: 50%;
  transform: rotate(-90deg);
  line-height: 25px;
  left: 162px;
  transition: all 0.5s ease 0s;
  filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.4));
}
.header-cta-contact-wrap {
  display: flex;
  vertical-align: middle;
  text-align: center;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
}
.header-cta {
  display: flex;
  position: relative;
  align-items: center;
}
.header-cta a {
  font-weight: 600;
  text-transform: uppercase;
}
.header-cta a.btn {
  display: inline-block;
  margin: 0px;
  white-space: nowrap;
  font-weight: 600;
  margin-left: 15px;
  text-transform: uppercase;
}
.header-contact-wrap {
  padding: 0 25px;
}
.header-contact-wrap a {
  display: flex;
}
.header-contact-wrap .contact {
  display: flex;
  text-align: left;
  flex-direction: column;
  text-transform: uppercase;
  margin-left: 10px;
}

.header-contact-wrap .contact>span{
  margin-left: 0;
}
.header-contact-wrap .contact .contact-number {
  font-weight: 700;
  font-size: 1.4rem;
  padding-top: 5px;
}
.header-contact-wrap a .contact-icon {
  width: 42px;
  height: 42px;
  border: 2px solid;
  border-radius: 100px;
  padding: 10px;
}
a.btn-border,
a.btn-border:hover {
  border: 2px solid;
}

.navbar-fixed-top {
  font-size: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}

.main-menu-panel .social-bar {
  width: 100%;
}

.main-menu-panel .mobile-menu {
  display: flex;
  margin-top: 30px;
  width: 100%;
}

.main-menu-panel ul.main-menu {
  text-align: center;
  height: auto;
  margin: 0;
  width: 100%;
}

.main-menu-panel a.menu-logo {
  max-width: 150px;
  margin: 0;
  width: auto;
  height: 55px;
  display: flex;
}

.main-menu-panel ul.main-menu li.menu-item {
  float: left;
  display: block;
  width: 100%;
  padding: 0;
  order: 100;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(-50px);
  opacity: 0;
  position: relative;
}

.main-menu-panel.open ul.main-menu li.menu-item {
  transform: translateY(0);
  opacity: 1;
  position: relative;
}
.main-menu-panel ul.main-menu li.menu-item a.menu-item-link {
  display: block;
  width: 100%;
  padding: 15px 25px !important;
  font-size: 1.2rem;
  font-weight: 500;

  transition: all 0.5s ease 0s;
  line-height: 1.2;
}

.main-menu-panel ul.social-links {
  display: block;
  margin: 0;
  vertical-align: middle;
  font-size: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.main-menu-panel ul.social-links li.social-icon {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
  margin: 5px 10px;
}
.social-links .social-icon a svg {
  height: 24px;
  width: 24px;
  padding: 0px;
}
.main-menu-panel ul.social-links li.social-icon a {
  border-radius: 50%;
  padding: 10px;
}
.main-menu-panel .social-bar h4.social-heading {
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  display: block;
  text-align: center;
  position: relative;
}
.main-menu-panel .social-bar h4.social-heading::after {
  content: "";
  width: 57px;
  position: absolute;
  top: 10px;
  border: 1px solid;
  right: 0;
  color: #000;
  opacity: 0.2;
}
.main-menu-panel .social-bar h4.social-heading::before {
  content: "";
  width: 57px;
  position: absolute;
  top: 10px;
  border: 1px solid;
  left: 0;
  color: #000;
  opacity: 0.2;
}


.main-menu-panel .logo-wrapper{
  display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}


.main-menu-panel .menu-close:hover {
  opacity: 1;
}

.main-menu-panel .header-cta a.btn {
  display: none;
  width: 100%;
}

.main-menu-panel .address {
  padding: 20px 0;
  text-align: center;
}

.main-menu-panel .address a span {
  padding: 10px 0;
}

.main-menu-panel .contact {
  margin: 20px 0 20px;
  text-align: center;
}

.main-menu-panel .contact a {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}

.main-menu-panel .contact a span {
  font-weight: 400;
  display: block;
  padding-bottom: 10px;
}

.main-menu-panel .contact a {
  padding-top: 10px;
}
.main-menu-panel .header-cta {
  text-align: center;
  padding-left: 0;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  padding: 30px 0px;
}
.header ul.main-menu li.menu-item a.menu-item-link {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

header .logo-section a .text-logo,
 .main-menu-panel .header-logo-text a .text-logo,
  footer .text-logo {
  font-size: 1.7rem;
  margin: 0px;
  font-weight: 700;
}

footer .text-logo {
  margin-bottom: 30px;
}

/* ====== End Header styles ===== */

/* ====== Start intro common style ===== */

section.intro-type-2 {
  text-align: center;
}

/* ====== ENd intro common style ===== */
/* Main Container */
.main-content {
  transition: all 0.5s ease;
}

/* ====== Home Page styles ===== */
section.hero-banner {
  position: relative;
  opacity: 1;
  z-index: 99;
  background: #fff;
  transition: all 0.5s ease 0s;
}

section.hero-banner .hero-container.container {
  width: 70vw;
  max-width: 1640px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  padding-bottom: 200px;
  z-index: 3;
}

section.hero-banner .slider {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 0;
  min-height: 100vh;
}

section.hero-banner .slider .slick-list {
  height: 100%;
}

section.hero-banner .slider .slick-list .slick-track {
  height: 100%;
  min-width: 100vw !important;
}
section.hero-banner .slide-outer {
  display: block;
  height: 100%;
}
section.hero-banner .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

section.hero-banner .slide-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.hero-banner .slide-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
section.hero-banner .slide-overlay-after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
}
section.hero-banner .slide-flex-wrapper,
section.hero-banner.video-wrapper .vedio-content-wrap {
  height: 100%;
  z-index: 9;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 560px;
}

section.hero-banner .slide-content-box,
section.hero-banner .video-content-box
{
  height: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: left;
  min-height: 100svh;
}

section.hero-banner .slide-flex-wrapper .container {
  height: 100%;
  position: relative;
  padding: 0 40px;
}

section.hero-banner .slide-flex-wrapper .container .slide-content,
section.hero-banner .container .video-content {
  color: #fff;
  position: relative;
  padding: 0px;
  overflow: hidden;
  min-height: 350px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}

section.hero-banner .slide-flex-wrapper .container .slide-content .caption-bg,
section.hero-banner .video-content .caption-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -9;
  opacity: 0.5;
}

section.hero-banner .slide-flex-wrapper .container .slide-content h1.hero-title,
section.hero-banner .video-content h1.hero-title {
  margin-bottom: 10px;
  margin-top: 0px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 25px;
}
section.hero-banner .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 25px;
  padding: 0;
  display: block;
  text-transform: uppercase;
  line-height: 1.2;
}

section.hero-banner .hero-paragraph {
  line-height: 1.5;
  display: block;
  width: 100%;
  font-weight: 400;
  letter-spacing: 1px;
  max-width: 700px;
  margin-bottom: 35px;
}

section.hero-banner .hero-paragraph p {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-size: 1.125rem;
}

section.hero-banner .slider-container .slick-dots {
  display: block;
  text-align: center;
  padding: 0 10px;
  bottom: 6vw;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1560px;
  z-index: 9;
  left: 50%;
}

section.hero-banner .slider-container .slick-dots > li {
  display: inline-block;
  border-radius: 0;
  overflow: hidden;
  margin: 15px;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50px;
}

section.hero-banner .slider-container .slick-dots > li button {
  display: none;
}

.slick-dots li button:before {
  display: none;
}

section.hero-banner .slider-container .slick-dots > li.slick-active button {
  opacity: 1;
}

section.hero-banner .slider-container .slick-dots > li button:before {
  font-size: 8px;
}

section.hero-banner .slider-container .slick-dots > li:only-child {
  display: none;
}

section.hero-banner.video-wrapper {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
}

section.hero-banner.video-wrapper iframe.youtube-video {
  height: 120vh;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.hero-slider {
  overflow: hidden;
}
button.slick-arrow {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 5px;
}
button.slick-arrow::before {
  content: "";
  border-top: 4px solid;
  border-right: 4px solid;
  width: 18px;
  height: 18px;
  position: absolute;
}
button.slick-arrow::before {
  top: 50%;
  left: 50%;
  transform: translate(-76%, -50%) rotate(45deg);
}
button.slick-arrow.slick-prev::before {
  transform: translate(-25%, -50%) rotate(223deg);
}
button.slick-prev {
  left: 50%;
  top: 95%;
  transform: translate(-110%, -95%);
}

button.slick-next {
  right: 50%;
  top: 95%;
  transform: translate(110%, -95%);
}


.section-buttons a.btn:not(:last-child){
  margin-right: 15px;
}

section.hero-banner
  .hero-slider
  button.slick-next
  section.hero-banner
  .banner-img {
  width: 100%;
}

section.hero-banner section.hero-banner {
  height: 100vh;
}
section.hero-banner .section-buttons {
  display: flex;
  gap: 10px;
  overflow: hidden;
  flex-flow: wrap;
}

section.hero-banner .hero-container,
section.hero-banner .video-slider-outer-wrapper,
section.hero-banner .video-slider-outer,
section.hero-banner .video-gallery-slider,
section.hero-banner .video-gallery-slider ul.slides,
section.hero-banner li.single-video-slide,
section.hero-banner .video-bg.auto-thumbnail {
  height: 100%;
}

section.hero-banner .slick-slide {
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
}
section.hero-banner button.slick-arrow {
  background-color: rgb(255 255 255 / 18%);
}
.slick-dots li button {
  border: 1px solid;
  border-radius: 50%;
}

body button.slick-arrow {
  opacity: 1;
  z-index: 9;
}

button.slick-arrow.slick-disabled {
  opacity: 0.25;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.1;
  z-index: -1;
}
img.intro-pattern {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
  height: auto;
  right: -5%;
}
img.intro-pattern.to-left {
  right: auto;
  left: -5%;
}

.luxury-life-stripe {
  position: absolute;
  width: 100%;
  height: 150px;
  top: 150px;
}

section .video-wrapper{
  height: 100vh;
  position: relative;
    overflow: hidden;
}

section.hero-banner .video-wrapper iframe#hero_vimeo_bg, section.hero-banner .video-wrapper iframe.youtube-video {
  height: 120vw;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/* ====== Socail Media Bar ===== */
section.social-bar {
  text-align: center;
}

section.social-bar h2 {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

section.social-bar ul.social-links {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  font-size: 0;
}

section.social-bar ul.social-links li.social-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 5px;
  position: relative;
}

section.social-bar ul.social-links li.social-icon a {
  position: absolute;
  text-align: center;
  border: 1px solid;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

section.social-bar ul.social-links li.social-icon a:after {
  font-size: 0.938rem;
  display: none;
}

section.social-bar ul.social-links li.social-icon a svg {
  width: auto;
  height: 15px;
}

/* ====== Image Text Block styles ===== */
.image-text-block {
  position: relative;
}

.image-text-block .col {
  position: relative;
}

.image-text-block .it-image-section {
  background-size: cover;
  background-position: center;
  margin-right: 50px;
  width: 100%;
  height: 100%;
  max-height: 960px;
  overflow: hidden;
}

.image-text-block .it-container {
  display: flex;
  flex-wrap: wrap;
}

.image-text-block .amnety-header .container {
  width: 100%;
  max-width: 1500px;
  display: block;
  margin: 0 auto;
  z-index: 9;
  position: relative;
  padding: 0px;
}

.image-text-block .it-container .image-wrapper .image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
  z-index: 5;
}

.image-text-block .it-section .it-content-wrapper {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image-text-block .it-section .it-content-wrapper .section-buttons {
  display: none;
}

.image-text-block .title-logo-bug {
  margin-bottom: 30px;
}

.image-text-block .it-container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Home Intro ===== */
section.home-intro {
  z-index: 9;
  position: relative;
  /* overflow-x: hidden; */
  overflow-y: visible;
}

.home-intro .right-col {
  padding-left: 90px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-intro .right-col .intro-heading,
.home-intro .right-col .intro-content {
  max-width: 550px;
}
.section-content {
  padding-bottom: 40px;
}
.home-intro .left-col {
  display: flex;
}
.home-intro .left-col .it-image-section .intro-slider,
.home-intro .left-col .it-image-section .slide-bg {
  height: 100%;
}
.home-intro .left-col .it-image-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 10px solid;
  box-shadow: 0px 4px 14px 0px #00000026;
}
/* ====== End intro slider ===== */

/* ====== Home Page styles ===== */
section.home-floorplans {
  padding: 100px 0 200px;
  list-style: none;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
section.home-floorplans button.slick-arrow {
  color: #111111;
  border: 2px solid #111111;
}
section.home-floorplans button.slick-arrow::before {
  border-color: inherit;
}
section.home-floorplans .container-full {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 9;
  position: relative;
  padding: 0 15px;
}

section.home-floorplans .col.right-col {
  width: 100%;
}

.floorplans-container .home-floorplans-slider {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.home-flp-content-outer {
  position: relative;
}

section.home-floorplans .slick-slide .floorplan-slide-details {
  position: absolute;
  width: 100%;
  height: auto;
  padding: 15px;
  padding-top: 12px;
}
section.home-floorplans .filter {
  width: 100%;
  display: flex;
  justify-content: center;
}
section.home-floorplans .filter span {
  display: block;
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
section.home-floorplans .filter .home-flp-desktop-filters {
  display: flex;
  border: 1px solid #ededed;
  border-radius: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding: 8px;
  gap: 5px;
}
section.home-floorplans .filter .filter-item {
  width: 180px;
  text-transform: uppercase;
  cursor: pointer;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: 0;
}
section.home-floorplans .filter .filter-item:not(.active) {
  border: none;
}
section.home-floorplans .col.flp-slider {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 50px;
}
.floorplans-content {
  overflow: hidden;
  min-height: 480px;
  cursor: pointer;
  position: relative;
}
.home-floorplans .slick-track .slick-slide {
  margin: 0 12px;
  border-radius: 10px;
}
.home-floorplans .slick-slide[aria-hidden="false"] {
  opacity: 1;
  transition: all 0.5s ease;
}
.floorplans-slick,
.flp-slider-wrapper,
.floorplans-container {
  display: flex;
  width: 100%;
}
.home-floorplans .floorplan-slide-img {
  max-width: 310px;
  max-height: 323px;
  width: 100%;
  height: 100%;
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.home-floorplans .col.flp-slider .slick-list .slick-track img {
  max-height: 480px;
  position: absolute;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  object-fit: contain;
  object-position: center center;
}
.home-floorplans .floorplan-slide-details {
  position: absolute;
  top: 180px;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
  transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s;
}
.floorplans-content:hover .floorplan-slide-details {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s;
  transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
  top: auto;
}
section.home-floorplans .flp-slide-title h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.6;
  font-size: 1.5rem;
}

section.home-floorplans .flp-slide-title .flp_sq_ft {
  display: none;
}
.floorplans-content:hover .floorplan-slide-details .flp-slide-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floorplans-content:hover .floorplan-slide-details .flp-slide-title h4 {
  text-align: left;
}
.floorplans-content:hover .floorplan-slide-details .flp-slide-title .flp_sq_ft {
  display: block;
  text-align: right;
  font-size: 1.125rem;
}
.bed-bath {
  padding-top: 15px;
}
.bed-bath span {
  display: flex;
  position: relative;
  z-index: 7;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.8;
  justify-content: space-between;
  direction: rtl;
}
.floorplan-slide-details .btn {
  margin-top: 22px;
  font-size: 0.95rem;
  float: left;
  min-width: 135px;
}
section.floorplans-listing .single-floorplan .flp-header {
  flex: 1 0 auto;
  width: 100%;
  height: auto;
  padding: 30px;
  text-align: left;
}

section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  vertical-align: top;
  text-align: left;
}
.flp-header-l .flp-price-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l
  h2.flp-title {
  font-size: 1.5rem;
  line-height: 1.35;
  width: 70%;
  float: left;
  margin-top: 0;
  margin-bottom: 7px;
  font-weight: 500;
}
section.floorplans-listing .flp-header-l .flp-price-title .price-box {
  font-size: 12px;
  line-height: 14px;
  text-transform: none;
  font-weight: 400;
  width: 30%;
  display: inline;
  text-align: right;
}
section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l
  span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.8;
  width: 100%;
  font-weight: 400;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  direction: rtl;
}
section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l
  span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.8;
  width: 100%;
  font-weight: 400;
  justify-content: space-between;
  padding: 0px;
  margin: 0;
  direction: rtl;
  display: flex;
  align-items: center;
  z-index: 7;
}

section.floorplans-listing
  .flp-listing
  .single-floorplan.studio-bed
  .flp-header
  .flp-header-l
  span.flp-bedroom{
    justify-content: flex-end;
  }

section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l
  span.flp-bed-bath.type-1 {
  display: none;
}
.bed-bath span.flp_bed_count::before,
.floorplans-listing .flp-bed-bath::before {
  position: absolute;
  content: "";
  background-color: rgb(255 255 255 / 20%);
  height: 1px;
  width: 100%;
  bottom: 8px;
  left: 0;
  z-index: 3;
}

.floorplans-listing .text-color-dark .flp-bed-bath::before{
  background-color: rgba(35, 35, 35, 0.2);
}

section.floorplans-listing
  .flp-listing
  .single-floorplan
  .flp-header
  .flp-header-l
  span.flp-bed-bath
  span {
  display: inline;
  width: auto;
}
section.floorplans-listing .flp-ctas {
  width: 100%;
  margin: 0px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
section.floorplans-listing .flp-ctas a {
  margin-top: 6px;
  font-size: 15px;
  padding: 15px;
  width: 49%;
  margin-left: 0px;
  margin-bottom: 0px;
  white-space: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
section.home-floorplans button.slick-prev,
section.home-gallery button.slick-prev {
  top: 118%;
  transform: translate(-111%, -100%);
}

section.home-gallery.text-color-dark button.slick-prev,
section.home-gallery.text-color-dark button.slick-next{
  border-color: #000;
}

section.home-gallery.text-color-dark button.slick-arrow::before{
  color: #000;
}

section.home-floorplans button.slick-next,
section.home-gallery button.slick-next {
  right: 50%;
  top: 118%;
  transform: translate(111%, -100%);
}
.mobile-home-flp-filter {
  display: none;
}

section.floorplans-listing .flp-listing .single-floorplan .flp-header .flp-header-l span svg{
  display: none;
}

/* =======new floorplan=========== */
.floorplan-filter{
  padding-top: 80px;
  padding-bottom: 20px;
}

.card-container{
  padding-bottom: 80px;
}

/* ====== Home Page Tabs ===== */
section.tabs-block {
  position: relative;
}

.tabs-block .tab-image {
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.tabs-block .container-full {
  z-index: 9;
}
section.tabs-block .container-full .col-6 {
  position: relative;
}
section.tabs-block .container-full .col-6.left-col {
  order: 2;
}
section.tabs-block .home-tabs-block-bg {
  width: 100%;
  height: calc(100% - 240px);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.heading-tab-btn-wrap {
  margin-bottom: 56px;
}
.tabs-block .tab-image img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
  border: 10px solid #fff;
}

.tabs-block .tab-image img.flp-pmc-logo{
  object-fit: cover;
  object-position: center center;
  width: unset;
  height: 300px;
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
  top: 50%;
  border: 0;
}


.tabs-block .tab-image.active {
  display: block;
}
section.tabs-block ul.tabs-nav {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 10px;
  border: 1.5px solid #ededed;
  margin-top: 20px;
  /* align-items: center; */
}
section.tabs-block .tabs-nav li {
  border: none;
  margin: 0;
  width: 50%;
  display: flex;
    justify-content: center;
    align-items: center;
}
.tabs-block .tabs-nav a {
  border: none;
  margin-bottom: 0;
  width: 100%;
  white-space: normal;
  height: 100%;
  align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px 12px;
    line-height: 1.4;
}
section.tabs-block .tabs-amenities-images {
  padding: 0;
  position: relative;
  z-index: 1;
  min-height: 450px;
}

section.tabs-block .tabs-amenities-images .tab-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.tabs-block .tabs-amenities-images .tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.tabs-block .tabs-amenities {
  max-width: 100%;
}

section.tabs-block .tabs-amenities .tabs-stage .tab-content {
  position: relative;
  padding: 50px 0px 50px;
  transition: all 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.tabs-block .tabs-amenities .tabs-stage .tab-content .tab-content-wrap,
section.tabs-block .footnote_txt
{
  max-width: 650px;
  margin-left: auto;
  margin-right: 100px;
}

.tab-content-wrap ol,
.tab-content-wrap ul,
.amenities-section .section-discription ol,
.amenities-section .section-discription ul
{
  list-style-type: auto;
  line-height: 1.5;
  padding-left: 15px;
}

.tab-content-wrap ul,
.amenities-section .section-discription ul
{
  list-style-type: disc;
}

.tab-content-wrap ol li,
.tab-content-wrap ul li,
.amenities-section .section-discription ol li,
.amenities-section .section-discription ul li
{
  margin-bottom: 15px;
}

section.tabs-block
  .tabs-amenities
  .tabs-stage
  .tab-content
  .tab-content-wrap
  ul.amenities-grid {
  min-height: 100px;
  padding-bottom: 50px;
  columns: 2;
}
section.tabs-block .tabs-amenities .home-amne-desc {
  margin-bottom: 24px;
}
section.tabs-block .tabs-amenities .tab-content-wrap ul.amenities-grid li {
  font-weight: 400;
  font-size: 1.125rem;
  position: relative;
  padding-left: 0px;
  line-height: 1.4;
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  align-items: flex-start;
}
section.tabs-block .tab-content-wrap ul.amenities-grid li .list-icon {
  display: block;
}
section.tabs-block .tab-content-wrap ul.amenities-grid li .list-icon svg {
  margin-right: 8px;
  width: 15px;
}
section.tabs-block .tabs-amenities-images img {
  width: 100%;
}

section.tabs-block .tabs-heading-blk {
  padding: 5px 0px;
  max-width: 700px;
}

#tabs-block .text-color-light.active span {
  color: #fff;
  font-weight: 700;
}

section.tabs-block .tab-content .tab-image {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;

  width: 100%;
  height: 100%;
}

section.tabs-block .tab-content .tab-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section.tabs-block .tabs-amenities .amenities-grid-wrap {
  overflow-y: auto;
}


/* ====== Home Image Gallery Section ===== */
section.home-gallery {
  padding: 100px 0 20px;
}
.home-gallery .container-full {
  position: relative;
  z-index: 9;
  contain: paint;
  padding-bottom: 80px;
}

.home-gallery .slick-initialized .slick-slide img {
  object-fit: cover;
  height: 35vw;
  object-position: center;
  width: 100%;
  max-height: 531px;
}
.home-gallery .slick-initialized .slick-slide.slick-center {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
  z-index: 9;
  position: relative;
}

form input#humans, label.formmangr-field-label[for="humans"] {
  display: none;
}

.home-gallery .slick-initialized .slick-slide {
  transform: scale(0.95);
  transition: all 0.5s ease-in-out;
  margin: 15px;
}
.home-gallery .img-gallery-magnific {
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
.home-gallery .slick-list {
  overflow: visible;
}
.home-gallery .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-gallery .slick-active {
  margin-left: -15px !important;
}
.home-gallery .slick-active.slick-current + .slick-active {
  margin-right: -15px !important;
  margin-left: 15px !important;
}
.home-gallery .slick-current.slick-active.slick-center {
  margin: 15px !important;
}

.home-gallery .image-slider-container {
  position: relative;
  width: 100%;
  height: auto;
}

/*====== End Home Page Gallery Slider ===== */

/* ====== CTA Slider to Columns styles ===== */
section.multipurpose-boxes {
  background-size: cover;
  background-position: center bottom;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px 0 100px;
}
.cta-columns-wrap {
  display: flex;
  gap: 30px;
}
.cta-slider .cta-columns-wrap .small-img-item {
  position: relative;
  width: 100%;

  display: flex;
  justify-content: center;
  flex-flow: wrap;
  align-items: center;
  border-radius: 15px;
  contain: paint;
}
.multipurpose-boxes .box-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
.multipurpose-boxes .cta-columns-wrap .small-img-item .mp-box-content {
  position: relative;
  z-index: 9;
  display: flex;
  flex-flow: column;
  width: 100%;
  text-align: center;
  margin: 15px;
  padding: 25px;
  margin-top: 400px;
  border-radius: 15px;
}
.multipurpose-boxes .small-img-item .mp-box-content h2.section-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.multipurpose-boxes .small-img-item .mp-box-content h3 {
  font-size: 1.124rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.multipurpose-boxes .small-img-item .mp-box-content .cta-btns,
.multipurpose-boxes .small-img-item .mp-box-content .cta-arrows {
  display: none;
}

.multipurpose-boxes .box-link-wrapper{
  font-size: 0;
}
/* ====== Gallery Slider ====== */
.gallery {
  position: relative;
  max-width: 100%;
  border-radius: 4px;
  height: 100%;
}

/* ====== Google Map Section ===== */
section.map-wrapper {
  height: 40vw;
}
.content-blocks section.map-wrapper:last-child {
  clip-path: none;
  height: 40vw;
}

/* ====== Footer CTA Section ===== */
section.footer-cta {
  position: relative;
  background-blend-mode: multiply;
}

.footer-cta .footer-cta-img,
.footer-cta .footer-cta-img .image-wrap {
  height: 100%;
}
.footer-cta .footer-cta-img .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.footer-cta .footer-cta-text .text-wrap {
  padding: 50px 100px;
  max-width: 1024px;
}
/*===== Footer =====*/
footer.footer {
  transition: all 0.5s ease;
}

section.site-footer {
  display: flex;
  flex-flow: wrap;
  padding: 90px 20px 55px;
}
.footer-logo-wrapper {
  width: 100%;
  text-align: center;
}
.footer-left {
  flex-grow: 1;
  padding: 50px 0;
}

.footer-left img {
  display: block;
  max-width: 230px;
  margin: 0 auto;
}

.footer ul.social-links {
  display: block;
  margin: 0;
  font-size: 0;

  margin-top: 10px;
  padding-bottom: 25px;
  padding-left: 0;
}

.footer ul.social-links li.social-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 5px 10px 5px 0px;
  position: relative;
}

.footer ul.social-links li.social-icon a {
  text-align: center;
  border-radius: 50%;
  border: 1px solid;
}

.footer ul.social-links li.social-icon a svg {
  width: auto;
  height: 16px;
}

.footer ul.social-links li.social-icon a:after {
  font-size: 1.5rem;
  display: none;
}

.footer .contact a {
  word-break: break-all;
}

.footer .footer-logo-wrapper img {
  display: block;
  max-width: 210px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer .address {
  font-size: 1rem;

  line-height: 1.8;

}

.footer .contact a,
.footer .email-contact a,
.footer .address a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 265px;
}

.footer .contact a,
.footer .email-contact a{
  word-break: break-all;
}

.footer .contact a:after,
.footer .email-contact a:after,
.footer .address a:after{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: 99;
}

.footer .footer-address .footer-icons {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 0 auto;
}
.footer .footer-address .footer-icons svg {
  max-width: 20px;
}
.footer .site-footer .footer-menu {
  padding: 0;
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.footer .footer-address {
  order: 3;
  display: flex;
  width: 100%;
  justify-content: center;

  text-align: center;
}
.footer .footer-address h3 {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer .container-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.footer-bottom {
  margin-top: 30px;
}

.footer li.footer-menu-item {
  font-size: 1rem;
  line-height: 2;
  display: inline-block;
  margin-bottom: 25px;
}

.footer li.footer-menu-item a.menu-item-link {
  text-transform: none;
  font-weight: 400;
  padding: 0 25px;
  margin: 5px 0;
  font-size: 1rem;
  position: relative;
}

.footer li.footer-menu-item:last-child a:after {
  display: none;
}

.copyright-area {
  padding: 0px;
  display: flex;
  flex-grow: 1;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.copyright-area p {
  margin-bottom: 0px;
  font-size: 1rem;
}

.copyright-text {
  display: inline-block;
  width: auto;
}

ul.policy-nav {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin: 0;
}

ul.policy-nav li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  position: relative;
  font-size: 1rem;
}

ul.policy-nav li:after {
  content: "";
  width: 6px;
  height: 0;
  border-bottom: 6px solid;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  margin-top: -3px;
  left: -5px;
}
.footer-lower {
  padding: 20px 0;
}
.property-icons {
  display: inline-block;
}

.property-icons li.single-prop-icon {
  display: inline-block;
  width: 30px;
  margin: 0 4px;
  vertical-align: middle;
}

.text-color-light.property-icons li.single-prop-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.text-color-dark.attribution a.cb-logo-link img {
  filter: brightness(1) invert(1);
}

ul.property-icons-list {
  margin: 0;
}

.attribution {
  display: flex;
  align-items: center;
}

.attribution a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.attribution a img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  height: auto;
  height: 40px;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
}

footer .contact,
footer .address,
footer .email-contact {
  font-size: 1.125rem;
  line-height: 1.5;
  min-width: 260px;
  position: relative;
  padding: 0 15px;
}

footer .contact {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer .contact .phone-no,
.footer .contact .email {
  display: block;
  font-weight: 600;
}

/* ====== Inner Hero Section ===== */
/* ====== Inner Hero Section ===== */
section.inner-hero {
  display: flex;
  flex-flow: wrap;
  z-index: 99;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  max-height: 510px;
}
section.inner-hero .inner-hero-container {
  text-align: center;
}

section.inner-hero .inner-hero-container .text-wrap {
  text-align: center;
}

section.inner-hero.two-columns .inner-hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

section.inner-hero.two-columns .inner-hero-container .inner-hero-img {
  width: 50%;
  position: relative;
}

section.inner-hero.two-columns
  .inner-hero-container
  .inner-hero-img
  .image-wrap {
  height: 100%;
}

section.inner-hero.two-columns
  .inner-hero-container
  .inner-hero-img
  .image-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.inner-hero.two-columns .inner-hero-container .inner-hero-text {
  width: 50%;
}

section.inner-hero.two-columns
  .inner-hero-container
  .inner-hero-text
  .text-wrap {
  padding: 40px;
  text-align: left;
}

section.inner-hero.overlapping-text-box .inner-hero-container {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  min-height: 500px;
}

section.inner-hero.overlapping-text-box .inner-hero-container .inner-hero-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

section.inner-hero.overlapping-text-box
  .inner-hero-container
  .inner-hero-img
  .image-wrap {
  height: 100%;
  position: relative;
}

section.inner-hero .inner-wrapper-overlay {
  background: linear-gradient(
    1.03deg,
    rgba(0, 0, 0, 0) 26.88%,
    rgba(0, 0, 0, 0.6) 75.07%
  );
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.inner-hero .text-wrapper-overlay {
  position: absolute;
  opacity: 0.7;
  z-index: 1;
  height: 100%;
  width: 100%;
}

section.inner-hero .bottom-bar {
  z-index: 1;
}

section.inner-hero.overlapping-text-box
  .inner-hero-container
  .inner-hero-img
  .image-wrap
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.inner-hero .inner-hero-text {
  z-index: 1;
  height: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
  width: 100%;
}

section.inner-hero .inner-hero-text .text-wrap {
  padding: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
  padding: 20px 20px;
}

section.inner-hero h1 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3rem;
  display: inline-block;
}

/* ==== Start Amenities intro section ==== */

.intro-type-1.image-text-block .left-col .image-overlay {
  display: none;
}

.intro-type-1.image-text-block .inner-heading-wrapper,
.intro-type-1.image-text-block .section-content {
  width: 100%;
  float: left;
}

.intro-type-1.image-text-block .left-col .image-wrapper,
.intro-type-1.image-text-block .left-col .col-bg {
  min-height: 400px;
  height: 100%;
}

.intro-type-1.image-text-block .left-col .image-wrapper img,
.intro-type-1.image-text-block .left-col .col-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
  border: 10px solid #ffffff;
  box-shadow: 0px 4px 14px 0px #00000026;
}

.intro-type-1.image-text-block .right-col {
  display: flex;
  align-items: center;
  padding: 70px 0px 70px 90px;
}
/* ==== End Amenities intro section ==== */

/* ==== Inner Page Amenities, Amenities section common css ==== */
.our-amnts-hdng-wrap h2.section-title {
  margin-bottom: 0;
}
.image-position-right .left-col {
  order: 2;
}
.amenities-section .image-wrapper {
  height: 100%;
}
.amenities-section .image-wrapper img {
  border: 10px solid #ffffff;
}
.amenities-section .right-col .it-section {
  max-width: 650px;
  margin-left: auto;
  margin-right: 100px;
  padding: 100px 0;
  height: 100%;
}

.full-width-section.amenities-intro .right-col{
  padding: 0;
}

.amenities-section .right-col .it-section .section-content
{
  padding-bottom: 0;
}
.amenities-section .amnety-header .image-overlay {
  display: none;
}

.amenities-section .right-col ul.amenities-grid {
  min-height: 100px;
  columns: 2;
}

.amenities-section .section-discription{
  margin-bottom: 25px;
}

.amenities-section .right-col ul.amenities-grid li {
  font-weight: 400;
  font-size: 1.125rem;
  position: relative;
  padding-left: 0px;
  line-height: 1.4;
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  align-items: flex-start;
}
.amenities-section .right-col ul.amenities-grid li .list-icon {
  display: block;
}
.amenities-section .right-col ul.amenities-grid li .list-icon svg {
  margin-right: 8px;
  width: 15px;
}
/* ==== End Inner Page Amenities, Amenities section common css ==== */

/* ==== Inner Page Amenities, Resident Amenities section==== */
.resident-amenities.amenities-section .it-section {
  margin-left: 100px;
  margin-right: auto;
}
/* ==== End Inner Page Amenities, Resident Amenities section ==== */

/* ==== Start Tour Page ==== */
section#tour-intro .section-content {
  padding-bottom: 40px;
}

/* ==== End Tour Page ==== */

/* ====== Gallery Page ===== */
.swifty-gallery-mobile-tabs-dropdown {
  display: none;
}
.gallery-tabs-nav {
  display: flex;
  gap: 10px;
  flex-flow: wrap;
}
.gallery-tabs-nav li {
  display: block;
  width: 100%;
      max-width: 230px;
}
.gallery-tabs-nav li a {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px 58px;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 600;
  gap: 10px;
  line-height: 1.5;
}
span.gallery-tab-icon svg {
  max-width: 24px;
  height: auto;
}
.gallery-section {
  padding: 50px 100px 90px;
}
.gallery-section .img-gallery-magnific {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}
.gallery-section .magnific-img {
  width: 32.5%;
  min-height: 33vw;
}
.gallery-section .magnific-img img {
  height: 100%;
  object-fit: cover;
}
.gallery-section
  .gallery-tabs
  .img-gallery-magnific
  > .magnific-img:nth-child(5n + 4) {
  width: 55%;
}
.gallery-section
  .gallery-tabs
  .img-gallery-magnific
  > .magnific-img:nth-child(5n + 5) {
  width: 43.5%;
}
/* ====== End Gallery Page ===== */

/* ====== Floorplan Filters Section ===== */
.floorplan-filters a.flp-filters-trigger {
  display: none;
}
.select-floor-plan {
  width: 27%;
  padding: 44px 15px;
}
.floorplan-filters {
  padding: 45px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease 0s;
}

.floorplan-filters.fixed {
  position: fixed;
  top: 0px;
  z-index: 999;
}

.floorplan-filters .container {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.floorplan-filters .flp-reset {
  margin-bottom: 0;
  height: 55px;
}
.floorplan-filters h2 {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.floorplan-filters select {
  font-weight: 400;
  text-transform: capitalize;
  font-size: 1rem;
  width: 100%;
  margin-top: 5px;
  box-shadow: none;
  height: 55px;
  outline: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
}

.floorplan-filters select.flp-bedrooms {
  display: inline-block;
  width: 100%;
  -webkit-appearance: none;
  font-weight: 500;
}

.floorplan-filters .single-filter.rooms {
  position: relative;
  width: 100%;
  display: block;
  /* float: left; */
}

.floorplan-filters .sqft-range {
  position: relative;
  width: 45%;
  float: left;
}

.floorplan-filters select {
  background-image: none;
}

.floorplan-filters a.flp-filters-trigger {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 1.2rem;
  position: relative;
  text-align: center;
  padding: 15px 10px;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
.floorplan-filters a.flp-filters-trigger:before {
  position: absolute;
  width: 18px;
  height: 18px;
  content: "";
  left: 50%;
  margin-left: -9px;
  transform: rotate(45deg);
  top: 71px;
}
.floorplan-filters a.flp-filters-trigger:after {
  content: "+";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  margin-top: -3px;
}
.floorplan-filters.active a.flp-filters-trigger:after {
  content: "-";
}

.floorplan-filters.fixed {
  width: calc(100% - 220px);
}

.floorplan-filters.active {
  height: 255px;
}

.floorplan-filters .more-flp-filters {
  font-size: 0;
  display: flex;
  width: 73%;
}

.floorplan-filters .more-flp-filters div {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 38%;
  padding: 0px 25px;
  padding: 15px;
}

.floorplan-filters .more-flp-filters div select {
  min-width: 130px;
  margin: 0;
}

.floorplan-filters .more-flp-filters div h2 {
  margin: 0 20px 10px 0;
  display: block;
  width: 100%;
}

.floorplan-filters .more-flp-filters div span.sf-range-values-seperator {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.floorplan-filters .more-flp-filters div:last-child {
  width: 24%;
  text-align: center;
  display: flex;
  align-items: flex-end;
}

.floorplan-filters .more-flp-filters .reset-new-flp-filtrers {
  margin-bottom: 0;
  cursor: pointer;
  margin-top: 0;
}

.flp-views .view-selectors{
  margin-bottom: 0px !important;
}

.flp-views{
  margin-bottom: 20px;
}

/* ====== Floorplan Section ===== */

.intro-type-2 .section-content {
  max-width: 940px;
  margin: 0 auto;
}

.floorplans-intro h2.section-title,
.neighborhood-intro h2.section-title,
.resident-heading h2.section-title,
section#home-gallery h2.section-title {
  margin-top: 0;
}

.floorplans-intro .section-content{
  padding-bottom: 0px;
}

section.floorplans-listing .flp-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

section.floorplans-listing .single-floorplan {
  width: 33.33%;
  margin: 0;
  padding: 10px;
  transition: all 0.5s ease 0s;
  display: flex;
    flex-direction: column;
}
/* section.floorplans-listing .single-floorplan .flp-top {
  position: relative;
} */
.flp-listing .flp-slide-in-trigger {
  order: 1;
  display: block;
  position: relative;
}
section.floorplans-listing .single-floorplan .flp-swaps {
  position: absolute;
  top: 20px;
  right: 20px;
}

section.floorplans-listing .single-floorplan .flp-swaps a {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  transition: all 0.5s ease;
  margin-bottom: 8px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

section.floorplans-listing .single-floorplan .flp-swaps a.active:before {
  display: none;
}

section.floorplans-listing .single-floorplan .flp-img {
  width: 100%;
  vertical-align: middle;
  height: 390px;
  margin: 0 auto;
  position: relative;
  order: 1;
}

section.floorplans-listing .single-floorplan .flp-img > div {
  padding-bottom: 0;
  height: 100%;
  width: 100%;
  display: none;
}

section.floorplans-listing .single-floorplan .flp-img > div img {
  opacity: 1;
  object-fit: contain;
  object-position: center center;
  display: flex;
  width: 70%;
  height: 100%;
  margin: 0 auto;
}

section.floorplans-listing .single-floorplan .flp-img > div.active {
  display: block;
}

section.floorplans-listing .single-floorplan .flp-img .flp-2d-image,
section.floorplans-listing .single-floorplan .flp-img .flp-3d-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 15px;
}

.bg-grey {
  background: #d9d9d9;
}


.available_flp,
.unavailable_flp
{
  text-align: center;
}

/* ====== Floorplan Sliding Popup ===== */
.flp-images,
.flp-sldr-wrapper {
  width: 60%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-right: 40px;
}

section.flp-slide-in {
  height: 100%;
  width: 100%;
  z-index: 99999;
  position: fixed;
  left: -100%;
  top: 0;
  transition: all 0.5s ease 0s;
}

/* section.flp-slide-in .flp-slide {
  position: absolute;
  background: #fff;
  width: 80%;
  height: 100%;
  min-width: 700px;
} */

section.flp-slide-in .flp-slide .flp-slide-header {
  background: #f8f8f8;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

/* section.flp-slide-in .flp-slide .flp-slide-close {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #a0a0a0;
} */

/* section.flp-slide-in .flp-slide .flp-slide-close span {
  font-size: 40px;
  transform: rotate(45deg);
  display: block;
  line-height: 54px;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body {
  display: flex;
  flex-flow: wrap;
  height: calc(100% - 60px);
  overflow: auto;
  padding: 0 0 0 40px;
  position: relative;
} */

.single-flp-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: calc(100vh - 170px);
  object-fit: contain;
}

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-images,
section.flp-slide-in .flp-slide .flp-slide-body .flp-sldr-wrapper {
  width: 60%;
  display: none;
  flex-flow: column;
  justify-content: center;
  padding-right: 40px;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-images {
  display: block;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-images .flp-image-wrapper {
  height: auto;
  min-height: calc(100% - 80px);
  display: flex;
  flex-flow: column;
  justify-content: center;
} */

section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-image-wrapper
  .single-flp-image {
  height: auto;
  min-height: calc(100% - 80px);
  display: flex;
  flex-flow: column;
  justify-content: center;
  display: none;
}

section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-image-wrapper
  .single-flp-image.current {
  display: block;
}

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-images .flp-img-toggles {
  text-align: center;
  padding: 20px 0 25px;
  position: relative;
} */

/* section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-img-toggles
  .flp-img-toggle-inner {
  display: inline-block;
  width: auto;

  border-radius: 5px;
  font-size: 0;
  background: #fff;
  border-radius: 50px;
} */

/* section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-img-toggles
  .flp-img-toggle-inner
  .img-switcher {
  font-size: 0.875rem;
  line-height: 40px;
  padding: 0 10px;
  min-width: 40px;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid;
  border-radius: 50px;
  margin-right: 10px;
} */

/* section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-img-toggles
  .flp-img-toggle-inner
  .img-switcher.img-switcher.current,
section.flp-slide-in
  .flp-slide
  .flp-slide-body
  .flp-images
  .flp-img-toggles
  .flp-img-toggle-inner
  .img-switcher.img-switcher:hover {
  background: #535353;
  color: #fff;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-info {
  width: 40%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  padding-left: 25px;
  padding-top: 20px;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-info h2 {
  font-size: 1.875rem;
  margin: 0 0 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #cdcdcd;
} */

/* section.flp-slide-in .flp-slide .flp-slide-body .flp-info .slide-flp-info {
  margin: 30px 0;
  font-size: 1.125rem;
  line-height: 1.5;
} */

.vt_list-grid-toggle {
  text-align: right;
  padding: 20px 0 0;
}

.vt_list-grid-toggle span.active {
  opacity: 1;
}

body .flp-slide-in.active {
  opacity: 1;
  left: 0;
  z-index: 9999;
  visibility: visible;
}

.social-share__group {
  overflow: hidden;
  height: 0;
  transition: all 0.5s ease 0s;
}

.flp-slidein-share .social-share__group.active {
  height: 65px;
}

a.fss-trigger-anchor {
  display: flex;
  color: #000;
}

a.fss-trigger-anchor svg {
  width: 12px;
}

.flp-slidein-slider .slick-prev:before,
.flp-slidein-slider .slick-next:before,
.flp-slidein-carousel .slick-prev:before,
.flp-slidein-carousel .slick-next:before {
  color: #191616;
}

.flp-slide-in a.social-share__link {
  color: #000;
}

.flp-slide-in a.social-share__link svg {
  max-width: 14px;
  max-height: 14px;
}

.flp-slidein-slider .slick-list .flp-gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.flp-slide-in.active:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: all 0.5s ease 0s;
  opacity: 0;
}

.flp-slide-in.active:before {
  left: 0;
  opacity: 1;
}

.flp-carousel-slide {
  cursor: pointer;
}

/* .flp-carousel-slide img {
  width: 100%;
  height: 6vw;
  object-fit: cover;
  object-position: center center;
  border: 5px solid #fff;
} */

.flp-video-wrapper {
  height: 100%;
}

/* .flp-gallery-slide.slick-slide {
  height: calc(100vh - 180px);
  max-height: 100%;
} */

/* .flp-images .panzoom-buttons {
  right: auto;
  left: 0;
  padding: 5px;
  bottom: 0px;
  background: #fff;
  padding-left: 10px;
  padding-bottom: 0;
  position: absolute;
} */

/* .flp-images .panzoom-buttons span {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid;
  text-align: center;
  line-height: 25px;
  margin-bottom: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  transition: all 0.5s ease 0s;
} */

/* body .flp-slidein-slider button.slick-prev {
  left: -15px;
}

body .flp-slidein-slider button.slick-next {
  right: -15px;
}

.flp-slidein-carousel button.slick-prev {
  left: 0;
}

.flp-slidein-carousel button.slick-next {
  right: 0;
} */

/* .flp-slidein-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
} */

/* .flp-slidein-btns a.btn {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
} */

/* === tour list and grid css start form here === */

.single-virtual-tour,
.single-gallery-video a {
  display: flex;
  flex-flow: wrap;
  padding: 50px 0;
  border-bottom: 1px solid #cdcdcd;
}

.single-gallery-video a {
  border-bottom: 0;
  padding: 0;
  width: 100%;
}

/* virtual tour toggle button svg css */
.vt_list-grid-toggle {
  text-align: right;
  padding: 20px 0 0;
}
.vt_list-grid-toggle span {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.875rem;
  vertical-align: middle;
  padding: 5px;
  cursor: pointer;
  width: 40px;
  opacity: 0.5;
}
.vt_list-grid-toggle span:hover,
.vt_list-grid-toggle span.active {
  color: #000;
  opacity: 1;
}
.vt_list-grid-toggle span svg {
  max-width: 40px;
}
.virtual-tour-btns {
  width: 30%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.virtual-tour-btns svg{
  vertical-align: bottom;
  margin-left: 3px;
}

.single-virtual-tour,
.single-gallery-video a {
  display: flex;
  flex-flow: wrap;
  padding: 50px 0;
  border-bottom: 1px solid #cdcdcd;
}

.single-gallery-video a {
  border-bottom: 0;
  padding: 0;
  width: 100%;
}

.vt_img {
  width: 30%;
}

.vt_img img {
  width: 100%;
  height: auto;
}

.vt-flp-info {
  width: 40%;
  padding: 0 60px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.vt-flp-info h2 {
  width: 100%;
  max-width: 300px;
  text-align: left;
  margin: 0 0 10px;
  font-size: 2.2rem;
}

.attached-flp-info {
  width: 100%;
  max-width: 300px;
  margin: 10px 0 0;
}

.attached-flp-info span {
  display: block;
  line-height: 2;
}

.virtual-tour-btns a.btn {
  text-wrap: inherit;
}

.vt-tour-section {
  padding-bottom: 100px;
}

.type-grid .alm-reveal {
  display: flex;
  flex-flow: wrap;
}

.type-grid .single-virtual-tour {
  width: calc(33.33% - 30px);
  margin: 40px 15px;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  padding: 20px;
}

.type-grid .single-virtual-tour .vt_img {
  width: 100%;
}

.type-grid .single-virtual-tour .vt_img img {
  height: 250px !important;
  object-fit: cover;
}

.type-grid .vt-flp-info {
  width: 100%;
  padding: 20px 0 0;
  text-align: center;
}
.type-grid .vt-flp-info h2 {
  text-align: center;
}
.type-grid .virtual-tour-btns {
  width: 100%;
  justify-content: center;
}

.avalable-units {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.au-table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column;
}

.unite-row {
  display: block;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  font-size: 0;
  background: rgba(255, 255, 255, 0.5);
}

.unite-row:last-child {
  border-bottom: none;
}

a.unit-apply {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}

/* .row-cell {
  font-size: 0.875rem;
  display: inline-block;
  width: 24.99999%;
  padding: 20px 10px;
  color: #454545;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
} */

/* .unite-row.head-row {
  font-weight: 700;
  background: rgba(255, 255, 255);
} */

body .flp-header {
  text-align: left;
  font-size: 0;
}

p.small-txt {
  color: #454545;
  margin-top: 5px;
}

.row-cell.s-n {
  width: 10%;
}

.no-apt-text {
  width: 66%;
  display: inline-block;
  color: #000;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px;
}

/* .amp-popup.theme_2 section.popup-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-form .formmangr-row {
  margin-bottom: 20px;
}

.popup-form div#submit {
  text-align: left;
}

.amp-popup.theme_1 .popup-body-wrapper {
  max-width: 1000px;
}

.amp-popup.theme_1 .forminator-row div#submit {
  text-align: center;
}

.amp-popup.theme_2 .popup-body-wrapper .popup-flex {
  border-radius: 0;
  border: 0;
} */

.vr-tour-popup {
  background-color: #000;
  width: 90%;
}

iframe.special-vr-iframe {
  width: 100% !important;
  min-height: 300px;
}

.leaflet-popup-content h1 {
  font-size: 1.25rem;
}

body .vr-tour-wrapper.active {
  z-index: 9999;
}

body .flp-slide-in a.social-share__link:hover {
  background: transparent;
}

/* .amp-popup.theme_1 .popup-content {
  padding: 0 30px;
  text-align: center;
}

.amp-popup.theme_1 .popup-form {
  padding: 0 30px;
}

.amp-popup.theme_1 .formmangr-col {
  padding-right: 0;
}

.amp-popup.theme_1 section.popup-banner {
  max-height: 350px;
  overflow: hidden;
}

.amp-popup.theme_1 section.popup-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.slide_in-body-wrapper .popup-flex {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
} */

.amp-slide_in {
  width: 100%;
}

body.sticky-header .amp-slide_in {
  width: calc(100vw - 80px);
}

.amp-slide_in-close {
  right: 20px;
  top: 20px;
}

.vr-close span {
  transform: rotate(45deg);
  display: block;
  position: relative;
  left: 2px;
  top: -1px;
}

/* ====== Neighborhood Block styles ===== */
#reviews-slider
{
  padding: 0;
}

section.neighborhood-intro h3{
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 30px;
}

section.neighborhood .nbp-fliter-dropdown {
  display: none;
}

section.neighborhood .fliters-map-container {
  display: flex;
  flex-flow: wrap;
  padding: 0 100px;
}
section.neighborhood .fliters-map-container .nbp-filter-options {
  display: flex;
  justify-content: center;
  width: 10%;
  order: 2;
  flex-direction: column;
}

section.neighborhood .nbp-filter-options {
  padding: 0;
  text-align: center;
  position: relative;
}

.nbp-filter-options.container a.nb-map-filter {
  padding: 20px 30px;
  margin-bottom: 2px;
}

.nbp-filter-options.container a.nb-map-filter.active {
  position: relative;
  transition: all 0.5s ease;
  opacity: 1;
}

.map-filters-box {
  display: flex;
  flex-flow: wrap;
  padding: 0;
  width: 90%;
  position: relative;
}
.map-canvas {
  width: 100%;
  height: 40vw;
}
.map-wrap iframe {
  height: 40vw;
}
/* .nbp-filter-places {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 800px;
  min-height: 240px;
  padding: 30px 40px;
  border-top-right-radius: 20px;
  z-index: 999;
} */
.nbp-filter-places {
  position: relative;
  width: 100%;
  min-height: 240px;
  padding: 30px 40px;
  z-index: 999;
}
.nb-places-ul {
  display: flex;
  gap: 10px;

  flex-wrap: wrap;
}
.nb-places-ul li {
  width: 30%;
  display: flex;
}
section.neighborhood ul.nb-places-ul li.nb-places a {
  width: 100%;
  padding: 10px 20px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  border-bottom: 1px solid;
  display: flex;
  text-align: center;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-grow: 1;
}
section.neighborhood ul.nb-places-ul li.nb-places a.active:after {
  background: #ffffff1a;
  display: block;
  height: 100%;
  position: absolute;
  content: "";
  min-height: 55px;
  width: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
/* ====== Walk Score Block styles ===== */
.walk-score-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.walk-score-section h2.section-title {
  margin-bottom: 50px;
}
.walk-score-section .walscore-text {
  width: 100%;
  justify-content: center;
  gap: 18px;
}
.walk-score-section .nb-scores {
  width: 50%;
  max-width: 500px;
  border-radius: 24px;
  padding: 30px;
}
.walk-score-section .score-wrap-inner {
  flex-flow: wrap;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.walk-score-section .score-number {
  font-size: 6.25rem;
  font-weight: 700;
}
.walk-score-section .score-desc {
  order: 2;
  font-size: 1.5rem;
  padding: 30px 20px;
  width: 100%;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.walk-score-section .bg-walk {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.bg-walk .image-wrap {
  height: 100%;
  position: relative;
}
.walk-score-section .bg-walk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
/* ====== Contact Block Style ===== */

.contact-intro .address-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #00000014;
  padding-bottom: 25px;
}
.contact-intro .contact-page-logo {
  margin-bottom: 40px;
}
.contact-intro .contact-page-logo img {
  width: 100%;
  height: auto;
  max-width: 250px;
}
.contact-intro .contact-address-column {
  width: 50%;
  display: flex;
}
.contact-intro .directions {
  width: 50%;
  text-align: right;
}

.contact-intro .conatct-pg-icons {
  width: 42px;
  height: 42px;
  margin-right: 20px;
  border-radius: 50px;
  border: 1.5px solid;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-intro .conatct-pg-icons svg{
  width: 24px;
    height: 25px;
}

.contact-intro .contact-page-desc h3 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.contact-intro .call-section {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #00000014;
}
.contact-intro .office-hours-section {
  display: flex;
  padding: 25px 0;
}
.contact-page-desc .office-hours .daily-hours .daily-hours {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: capitalize;
}
.contact-page-desc .office-hours .office-hours-info .daily-hours span {
  margin-right: 20px;
}
.contact-call-wrap a.external_link {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.contact-property-name{
  display: none;
}
/* ====== Resident Page ===== */
.resident-heading .section-content,
.resources-heading .section-content {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 0;
}

/* ====== Resident Block Style ===== */
section.resident-sections {
  max-width: 100%;
  font-size: 0;
  display: flex;
  flex-flow: wrap;
}
section.resident-sections .container {
  flex-flow: wrap;
  gap: 30px;
  justify-content: center;
}
section.resident-sections .single-resident-section {
  padding: 15px;
  width: 31%;
  height: auto;
  position: relative;
  /* min-height: 10vw; */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.resident-sections .single-resident-section .col-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resident-sections .single-resident-section .col-bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
section.resident-sections .single-resident-section a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

section.resident-sections .single-resident-section .resident-section-content {
  display: block;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.resident-sections h2.resident-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  line-height: 1.2;
  padding: 0 0 5px;
  margin-bottom: 0;
}

section.resident-sections h3.resident-section-subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 0px 0;
}

/* ====== FAQ Section ===== */
.faq-section {
  padding-top: 50px;
  padding-bottom: 105px;
}

.faq-section .section-content{
  padding-bottom: 0;
}

.faq-section .question-wrap {
 border: 1px solid;
  padding: 20px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid ;
  border-radius: 24px;
  border-color: rgb(0 0 0 / 16%);
}
section.faq-section .question {
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-weight: 700;
  font-size: 1.313rem;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}

section.faq-section .answer p {
  line-height: 1.2;
  padding: 11px 0;
  
}
section.faq-section .answer {
  
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

section.faq-section .question,
section.faq-section .answer {
  position: relative;
}
.container.faq-grid {
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
}

.faq-description {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  padding: 50px;
}
.faq-icon {
 
  margin-left: auto;

  text-align: center;
  line-height: 53px;
  position: absolute;
  right: 13px;
  top: 60%;
  transform: translateY(-50%);
}
section.faq-section .question svg {
  display: inline-block;
    width: 13px;
    height: 27px;
    padding: 0;
    position: relative;
    top: 2px;
    left: 1px;
}

section.faq-section .active svg {
  transform: rotateZ(180deg);
  top: 4px;
  left: 1px;
}
/* home and inner faq section css */
.faq-section .section-content{
  margin-bottom: 18px;
}
/* ====== Resources Section ===== */
section.resources-section .fixed-links {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}

section.resources-section .fixed-links a.fixed-resource-link {
  display: inline-block;
  width: calc(50% - 20px);
  margin: 25px 10px;
  padding: 19px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
}

section.resources-boxes .resources-boxes-wrapper .flexi-resource-links {
  display: flex;
  flex-flow: wrap;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource {
  width: calc(33.33% - 40px);
  margin: 0 20px 35px;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid;
  position: relative;
  border-color: rgb(0 0 0 / 16%);
  text-align: center;
}
.single-resource .external_link {
  display: block;
  width: 100%;
}
section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header {
  padding: 5px;
  position: relative;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header
  h4 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-top: 30px;
  margin: 0;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header
  h4
  span {
  display: none;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header
  .single-resource-icon {
  height: 100%;
  width: 60px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header
  .single-resource-icon img{
    display: none;
  }

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-content {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 20px;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-content
  .resource-desc
  a.flexi-resource-link {
  font-weight: 700;
  display: block;
  margin-top: 10px;
}


section.resources-section .fixed-links a.fixed-resource-link svg {
  max-width: 20px;
  position: relative;
  top: 5px;
  right: 10px;
  padding: 0px;
}
/* ====== Blog Page Style ===== */
.listing-container {
  display: flex;
}
.blog-listing-block,
.blog-details-block {
  padding-top: 120px;
}

.listing-container .listing-wrapper {
  flex-grow: 1;
  width: 100%;
}

.listing-container .serach-box {
  width: 100%;
  margin-bottom: 50px;
}

.listing-container .poperty-listing {
  display: flex;
  width: 100%;
}

.listing-container .layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 40px;
}

.listing-container .post-item {
  display: flex;
  flex-wrap: wrap;
}

.listing-container .post-item .item-details {
  background-color: #fff;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  height: 100%;
  border: 1px solid #d5d5d5;
}

.listing-container .post-item .item-details .post-top {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 0;
  margin: 0 0 30px;
}

.listing-container .post-item .item-details .post-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  width: 0.875vw;
  height: 0.875vw;
  border-radius: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  a.featured-image {
  display: block;
}

.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  a.featured-image
  .post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  .post-date {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0 9px 0 0;
  padding: 10px 20px;
}

.listing-container .post-item .item-details .post-info {
  display: flex;
  flex-flow: wrap;
  justify-content: inherit;
  align-items: inherit;
  padding: 0 20px 20px;
}

.listing-container .post-item.single-blog .item-details .post-info {
  flex-flow: column;
  flex: 1;
}

.listing-container .post-item .item-details .post-info .post-cat {
  text-align: left;
  width: 100%;
  padding: 10px 0;
}

.listing-container .post-item .item-details .post-info .post-cat ul li {
  display: inline-block;
  padding: 0 10px;
}

.listing-container
  .post-item
  .item-details
  .post-info
  .post-cat
  ul
  li:first-child {
  padding-left: 0;
}

.listing-container .post-item .item-details .post-info .dir-desc,
.listing-container .post-item .item-details .post-info .post-link-wrap,
.listing-container .post-item .item-details .post-info h4.single-post-title a {
  text-align: left;
}

.listing-container .post-item .item-details .post-info h4.single-post-title {
  flex-grow: 1;
  margin: 0;
  position: relative;
  font-size: 2rem;
  line-height: 1.2;
}

.listing-container .post-item .item-details .post-info h4.single-post-title a {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: self-end;
}

.listing-container .post-item.single-blog .post-info h4.single-post-title a {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.listing-container .post-item .item-details .post-info .post-link-wrap a.btn {
  margin-left: 0;
}

.listing-container .post-item .item-details .post-info .dir-desc {
  flex-grow: 1;
  margin-bottom: 20px;
}

.listing-container .post-item .item-details .post-info .dir-desc span {
  display: inline-block;
  line-height: 1.5;
}

.listing-container
  .post-item
  .item-details
  .post-info
  .dir-desc
  a.external-link {
  display: block;
}

section.blog-details-block {
  position: relative;
}

section.blog-details-block .post-content-inner {
  display: flex;
  flex-flow: wrap;
  padding-left: 100px;
}

section.blog-details-block .post-content-inner .block-paragraphs {
  width: 70%;
  padding-top: 0;
  padding-right: 30px;
}

section.blog-details-block .post-content-inner .block-paragraphs h3 {
  font-weight: 700;
  text-transform: capitalize;
  margin: 50px 0 40px;
  font-size: 2rem;
}

section.blog-details-block .post-content-inner .block-paragraphs p {
  margin-bottom: 30px;
}

section.blog-details-block .post-content-inner .wp-block-image {
  margin: 40px 0;
}

section.blog-details-block
  .post-content-inner
  .wp-block-image
  .post-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.blog-details-block .social-share {
  position: absolute;
  top: 0px;
  transition: all 0.5s ease 0s;
  padding-top: 0;
}

section.blog-details-block .social-share.fixed-pos {
  position: fixed;
}

section.blog-details-block .social-share a.social-share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5rem;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.social-share a.social-share-link svg {
  width: 100%;
  height: 100%;
  max-width: 20px;
  max-height: 20px;
}

section.blog-details-block .post-sidebar {
  width: 30%;
  padding-left: 50px;
  position: relative;
}

section.blog-details-block .post-sidebar .serach-box .search-container {
  position: relative;
}

section.blog-details-block
  .post-sidebar
  .serach-box
  .search-container
  input#search-bar {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  padding: 20px 20px 20px 50px;
  height: 58px;
  width: 100%;
}

section.blog-details-block
  .post-sidebar
  .serach-box
  .search-container
  a.search-icon {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 20px;
}

section.blog-details-block .post-sidebar .widget-title {
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 30px;
}

section.blog-details-block .post-sidebar .cat-list {
  padding: 20px 0 30px;
}

section.blog-details-block .post-sidebar .cat-list ul {
  list-style: none;
}

section.blog-details-block .post-sidebar .cat-list ul li {
  padding-bottom: 20px;
}

section.blog-details-block .post-sidebar .cat-list ul li a {
  font-size: 0.938rem;
  text-transform: uppercase;
  font-weight: 700;
}

section.blog-details-block
  .post-sidebar
  .releted-posts-list
  .single-related-posts {
  border: 1px solid #e3e3e3;
  margin-bottom: 50px;
}

section.blog-details-block
  .post-sidebar
  .releted-posts-list
  .single-related-posts
  a.related-post-title
  h3 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.5;
}

section.blog-details-block
  .post-sidebar
  .releted-posts-list
  .single-related-posts
  .rp-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.blog-details-block
  .post-sidebar
  .releted-posts-list
  .single-related-posts
  .rp-details {
  padding: 20px;
}

section.blog-details-block
  .post-sidebar
  .releted-posts-list
  .single-related-posts
  .rp-details
  .post-link-wrap
  a {
  display: block;
  text-align: left;
  padding: 0;
  text-transform: capitalize;
  text-decoration: underline;
  border: none;
}

.latest-posts-container {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  position: relative;
}

.latest-posts-container h2.section-title {
  margin-bottom: 50px;
}

.latest-posts-container .latest-posts-list .single-latest-posts {
  border: 1px solid #e3e3e3;
  margin-bottom: 50px;
  background: #f8f8f8;
}

.latest-posts-container
  .latest-posts-list
  .single-latest-posts
  a.latest-post-title
  h3 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 50px;
  text-align: left;
}

.latest-posts-container .latest-posts-list .single-latest-posts .lp-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-posts-container .latest-posts-list .single-latest-posts .lp-details {
  padding: 30px;
}

.latest-posts-container
  .latest-posts-list
  .single-latest-posts
  .lp-details
  .post-link-wrap
  a {
  display: block;
  text-align: left;
  padding: 0;
  text-transform: capitalize;
  text-decoration: underline;
}

.latest-posts-container .multiple-items .slick-slide {
  margin: 0 35px;
}

.latest-posts-container .multiple-items button.slick-arrow {
  width: 4vw;
  height: 4vw;
  z-index: 10;
}

.latest-posts-container .multiple-items button.slick-prev {
  left: -70px;
}

.latest-posts-container .multiple-items button.slick-next {
  right: -70px;
}

.items .item {
  display: inline-block;
}

.image-gallery-slider .slide-bg img.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

input#humans {
  width: 0;
  height: 0;
  font-size: 0;
  border: 0;
  visibility: hidden;
  padding: 0;
  margin: 0;
}

section.multipurpose-boxes
  .cta-columns
  .cta-columns-wrap
  .small-img-item
  a.box-link-wrapper:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: 99;
}

.faq-heading .text-content-wrapper .intro-content {
  padding: 0;
}

.bed-no-match,
.area-no-match,
.price-no-match {
  display: none !important;
}
/*  ===== Form section css start here ===== */
.form-section.bg-white, 
.form-section.bg-light, 
.form-section .col-8.bg-light, 
.form-section .col-8.bg-white,
.form-section .col-7.bg-light, 
.form-section .col-7.bg-white
{
  background-color: #ebebeb;
}

.form-section .subcol {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 20px;
}
section.form-section .form-wrap .subcol .formmangr-field label,
section.form-section
  .form-wrap
  .subcol
  .field-type-pets
  .formmangr-field
  label.formmangr-form-lbl,
section.form-section
  .form-wrap
  .subcol
  .field-type-contact_by
  .formmangr-field
  label.formmangr-form-lbl {
  display: none;
}

.form-section .text-color-light .formmangr-row .formmangr-input::placeholder, 
.form-section .text-color-light .formmangr-row select.formmangr-form-dd, 
.form-section .text-color-light .formmangr-row .formmangr-field textarea::placeholder,
.form-section .text-color-light .formmangr-row .formmangr-input, 
.form-section .text-color-light .formmangr-row select.formmangr-form-dd, 
.form-section .text-color-light .formmangr-row .formmangr-field textarea
{
  color: #000 !important;
  opacity: 1 !important;
}


section.form-section .form-wrap .subcol .field-type-pets .formmangr-field label,
section.form-section
  .form-wrap
  .subcol
  .field-type-contact_by
  .formmangr-field
  label {
  display: flex;
}
section.form-section
  .form-wrap
  .subcol
  .field-type-pets
  .formmangr-field
  label.show,
section.form-section
  .form-wrap
  .subcol
  .field-type-contact_by
  .formmangr-field
  label.show {
  width: 100%;
}
section.form-section .form-wrap .subcol .formmangr-row {
  display: flex;
  margin-bottom: 20px;
  min-height: 30px;
  width: 100%;
  flex-flow: wrap;
}
section.form-section .form-wrap .subcol .formmangr-col {
  width: 50%;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 12px;
}
section.form-section .form-wrap .subcol .formmangr-col.field-type-comment{
  margin-bottom: 25px;

}
.form-section .subcol .section-content {
  margin-bottom: 10px;
}
.form-section .form-img-col {
  height: 100%;
  padding-left: 7px;
}
.form-section .form-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-section .equal-height{
  flex-direction: row-reverse;
}
/*  ===== common css for blog  =====*/
.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  .blog-img-block,
.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  a.featured-image {
  display: block;
  background-color: #d3cdcd;
  height: 240px;
  position: relative;
}
.listing-container .post-item .item-details .post-top .single-featured-image {
  width: 100%;
}
.listing-container
  .post-item
  .item-details
  .post-top
  .single-featured-image
  a.featured-image
  img,
.related-widget
  .releted-posts-list
  .single-related-posts
  .single-related-post-img-blk
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.related-widget
  .releted-posts-list
  .single-related-posts
  .single-related-post-img-blk {
  height: 170px;
  width: 100%;
  position: relative;
  display: block;
}
.blog-hero-detail-page.inner-hero .blog-hero-detail-content-wrap.text-wrap {
  flex-direction: column;
  padding: 59px 0px;
}
.blog-hero-detail-page .blog-hero-detail-content-wrap span p {
  margin-bottom: 0px;
}
section.inner-hero.overlapping-text-box.blog-hero-detail-page
  .inner-hero-container
  .inner-hero-text
  .blog-hero-detail-content-wrap
  h1 {
  padding: 0px 30px;
}

section.blog-details-block .post-content-inner .block-paragraphs img {
  width: 100%;
}
section.blog-details-block .post-content-inner .block-paragraphs p:empty {
  display: none;
}


.home-slider-floorplan-container .slick-dots li button {
  color: #c6c6c6; 
   background: #999;
   opacity: .5;
 }
 .home-slider-floorplan-container .slick-dots li.slick-active button{
 opacity: 1;
 background-color: #424242;
 }

/* ====== When section does't have image on right or left side styles ===== */

section.home-intro.full-width-section .intro-heading,
section.home-intro.full-width-section .intro-content,
section.form-section.full-width-section .subcol,
section.form-section.full-width-section .col-7,
section.footer-cta.full-width-section .col-7,
section.intro-type-1.full-width-section .it-section.col-6,
.image-text-block.full-width-section
  .col.right-col.amnety-list
  .it-section.col-6,
.contact-intro.intro-type-1.full-width-section .col.col-7,
.full-width-section.intro-type-1.image-text-block .right-col,
.full-width-section.amenities-section .col-6 
{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.full-width-section.intro-type-1.image-text-block .right-col .it-section{
  width:100%
}
section.home-intro.full-width-section:before,
section.form-section.full-width-section:before,
section.footer-cta.full-width-section::before,
section.intro-type-1.full-width-section::before {
  display: none;
}
.amenities-section.full-width-section
  .amnety-list
  .it-section
  .section-content
  ul
  li {
  list-style: inside;
}


.above-two-cta-btn {
  flex-grow: 1;
  flex-basis: content;
}


.full-width-section.home-intro .right-col{
  width: 100%;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.full-width-section.footer-cta .footer-cta-text .text-wrap{
  padding: 50px 0px;
}

.full-width-section.intro-type-1.image-text-block .right-col{
  padding-left: 0;
}

.full-width-section.amenities-section .right-col .it-section{
  max-width: unset;
  margin-left: unset;
  margin-right: unset;
  padding: 100px;
  text-align: justify;
}

section.footer-cta.full-width-section .col-7,
section.footer-cta.full-width-section .cta-container
{
  display: block;
}

/* //review slider  css
 */
.home_srs_reviews_slider_wrap .slick-next {
  right: -100px;
}
.home_srs_reviews_slider_wrap .slick-disabled {
  opacity: 0.5;
  pointer-events: none;
  display: block !important;
  border-color: rgba(0, 0, 0, 0.3);
}
section#reviews-slider .home_srs_reviews_slider_wrap {
  position: relative;
}
section#reviews-slider .home_srs_reviews_slider_wrap button.slide-arrow {
  left: 20px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
section#reviews-slider
  .home_srs_reviews_slider_wrap
  button.slide-arrow.slick-next {
  left: auto;
  right: 20px;
}
.home_srs_reviews_slider_wrap .slick-list .slides .slides-content {
  box-shadow: none;
}
section#reviews-slider h2.luxury-life-heading {
  padding: 0 20px;
}
/* mobile filter design */
.nbp-fliter-dropdown,
.swifty-gallery-mobile-tabs-dropdown,
.mobile-home-flp-filter,
.swifty-gallery-mobile-tabs-dropdown {
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 14px;
  display: none;
}
.nbp-fliter-dropdown select.nbp-mobile-filters,
.swifty-gallery-mobile-tabs-dropdown select,
.mobile-home-flp-filter select,
.swifty-gallery-mobile-tabs-dropdown select {
  width: 100%;
  border: 0;
  padding: 10px;
  text-align: center;
  border: 1px solid;
  color: #111111;
  background: #fff;
  border-radius: 10px;
}

.available_flp h2{
  margin-top: 0;
}

/* ====== Responsive styles ===== */

@media screen and (max-width: 1680px) {
  section.hero-banner .slide-flex-wrapper .container .slide-content h1.hero-title, 
  section.hero-banner .video-content h1.hero-title
  {
    font-size: 2.6rem;
  }
  section.inner-hero h1
{
  font-size: 2.4rem;
}

  h2.section-title {
    font-size: 2rem;
  }
  .btn{
    padding: 15px 25px;
    min-width: 150px;
  }
  section.home-floorplans .flp-slide-title h2{
    font-size: 1.2rem;
  }
  button.slick-arrow {
    width: 50px;
    height: 50px;
  }
  button.slick-arrow::before {
    border-top: 3px solid;
    border-right: 3px solid;
    width: 14px;
    height: 14px;
  }
  header .logo-section{
    height: 85px;
  }
  .multipurpose-boxes .small-img-item .mp-box-content h2.section-title {
    font-size: 1.2rem;
  }
  .vt-flp-info h2{
    font-size: 1.8rem;
  }
  .contact-intro .contact-page-logo img{
    max-width: 200px;
  }
  .contact-intro .conatct-pg-icons svg{
    height: 20px;
  }
  section.resident-sections h2.resident-section-title {
    font-size: 1.2rem;
  }
  .listing-container .post-item .item-details .post-info h4.single-post-title,
  section.resources-boxes .resources-boxes-wrapper .flexi-resource-links .single-resource .single-resource-header h4 {
    font-size: 1.5rem;
  }
}


@media screen and (max-width: 1676px) {
  html {
    font-size: 100%;
  }
  /* section.hero-banner .slide-flex-wrapper .container {
    padding: 0 20px;
  } */
  section.hero-banner .slide-flex-wrapper,
  section.hero-banner.video-wrapper .vedio-content-wrap {
    max-width: 500px;
  }
  section.tabs-block
    .tabs-amenities
    .tabs-stage
    .tab-content
    .tab-content-wrap {
    max-width: 600px;
    margin-right: 70px;
  }
  .form-section .subcol {
    max-width: 700px;
    margin-right: auto;
  }
  .amenities-section .right-col .it-section {
    max-width: 600px;
    margin-right: 70px;
  }
  .resident-amenities.amenities-section .it-section {
    margin-left: 70px;
    margin-right: auto;
  }
  section.neighborhood .fliters-map-container .nbp-filter-options {
    width: 15%;
  }
  section.neighborhood .fliters-map-container {
    padding: 0 60px;
  }
  .map-filters-box {
    width: 85%;
  }
  button.slick-arrow {
    width: 50px;
    height: 50px;
  }
  button.slick-arrow::before {
    width: 14px;
    height: 14px;
  }
  section.home-gallery {
    padding: 75px 0 20px;
  }
  section.multipurpose-boxes {
    padding: 20px 0 75px;
  }
}

@media screen and (max-width: 1440px) {
  section.tabs-block
    .tabs-amenities
    .tabs-stage
    .tab-content
    .tab-content-wrap {
    max-width: 560px;
    margin-right: 70px;
  }
  section.hero-banner
    .slide-flex-wrapper
    .container
    .slide-content
    h1.hero-title,
  section.hero-banner .video-content h1.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  section.hero-banner .slide-flex-wrapper,
  section.hero-banner.video-wrapper .vedio-content-wrap {
    max-width: 440px;
  }
  .gallery-section .magnific-img {
    width: 32.3%;
    min-height: 33vw;
  }
  .gallery-section {
    padding: 50px 60px 90px;
  }
  section.tabs-block .footnote_txt{
    margin-right: 0;
  }
  .copyright-text,
  .attribution {
    position: relative;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-right: 0px;
  }
  .icon-link-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 15px 0;
  }
  ul.policy-nav {
    text-align: center;
    margin: 10px 0;
  }
  .copyright-area{
    flex-flow: wrap;
  }
  .tabs-block .tabs-nav a{
    padding: 14px 12px;
  }
  h2.section-title {
    font-size: 1.8rem;
}
.footer li.footer-menu-item a.menu-item-link{
  padding: 0 10px;
}
.gallery-tabs-nav li a{
  padding: 20px 30px;
}
.vt-flp-info h2 {
  font-size: 1.5rem;
}
section.inner-hero h1 {
  font-size: 2.1rem;
}
button.formmangr-button.formmangr-button-submit{
  padding: 15px 40px;
  min-width: 140px;
}
.footer .contact a, .footer .email-contact a, .footer .address a{
  font-size: 1.1rem;
}
.gallery-tabs-nav li a{
  gap: 0;
}
.gallery-tabs-nav li a {
  padding: 15px 30px;
}
.footer .footer-address .footer-icons svg {
  max-width: 15px;
}
.footer .footer-address .footer-icons {
  width: 40px;
  height: 40px;
}
.footer .footer-logo-wrapper img{
  max-width: 190px;
}
}

@media screen and (max-width: 1280px) {
  .home-intro .right-col {
    padding-left: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  section.tabs-block
    .tabs-amenities
    .tabs-stage
    .tab-content
    .tab-content-wrap,
    section.tabs-block .footnote_txt
    {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
  }
  .form-section .subcol {
    margin-right: auto;
  }
  .intro-type-1.image-text-block .right-col {
    padding-left: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .full-width-section.amenities-intro .right-col{
    padding: 0;
  }
  .amenities-section .right-col .it-section {
    margin: 0 auto;
    padding: 100px 20px;
  }
  header,
  .header.collapsed {
    padding: 25px 20px;
  }
  .gallery-section {
    padding: 50px 20px 90px;
  }
  .gallery-section .img-gallery-magnific {
    justify-content: space-around;
  }
  .gallery-section .magnific-img {
    width: 32%;
  }
  .gallery-section .gallery-tabs .img-gallery-magnific > .magnific-img:nth-child(5n + 4) {
    width: 54%;
  }
  section.hero-banner .slide-flex-wrapper .container .slide-content h1.hero-title, section.hero-banner .video-content h1.hero-title{
    font-size: 2.5rem;
  }
  .listing-container .post-item .item-details .post-info h4.single-post-title, section.resources-boxes .resources-boxes-wrapper .flexi-resource-links .single-resource .single-resource-header h4 {
    font-size: 1.4rem;
  }
  header .logo-section {
    height: 75px;
}
.header-contact-wrap .contact .contact-number{
  font-size: 1.2rem;
}
.header-contact-wrap a .contact-icon {
  width: 39px;
  height: 39px;
}
}

@media screen and (max-width: 1024px) {
  .footer-cta .footer-cta-text .text-wrap {
    padding: 50px;
  }
  .floorplan-filters .more-flp-filters div select {
    min-width: 116px;
  }
  section.neighborhood .fliters-map-container .nbp-filter-options {
    width: 100%;
    order: 0;
    flex-flow: wrap;
    justify-content: center;
  }
  .map-filters-box {
    width: 100%;
  }
  .home-intro .intro-slider-container {
    flex-wrap: wrap;
  }
  section.gallery-section .gallery-tabs ul.gallery-tabs-nav {
    display: none;
  }
  .swifty-gallery-mobile-tabs-dropdown{
    display: block;
  }
  .type-grid .single-virtual-tour {
    width: calc(50% - 30px);
  }
}

@media screen and (max-width: 992px) {
  .header-cta-contact-wrap {
    display: none;
  }
  .home-intro .it-image-section {
    width: 100%;
    max-height: 500px;
  }
  .home-intro .left-col {
    width: 100%;
  }
  .home-intro .right-col {
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .home-intro .right-col .intro-heading,
  .home-intro .right-col .intro-content {
    max-width: 100%;
    width: 100%;
  }
  section.hero-banner .slide-outer {
    display: flex;
    flex-wrap: wrap;
  }
  section.hero-banner .slide-outer {
    display: flex;
    flex-flow: wrap;
    height: 100%;
  }
  section.hero-banner .slide-content-box{
    min-height: auto;
  }
  section.hero-banner .slider {
    height: 100%;
  }
  section.hero-banner .slide-bg {
    width: 100%;
    position: relative;
    height: 500px;
  }
  section.hero-banner .slide-flex-wrapper,
  section.hero-banner .vedio-content-wrap {
    width: 100%;
    order: 2;
    min-height: max-content;
    text-align: center;
    max-width: 100%;
    display: flex;
  }
  section.hero-banner .slide-content-box {
    padding: 50px 0;
  }
  section.hero-banner .slide-flex-wrapper .container .slide-content,
  section.hero-banner .container .video-content {
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto !important;
  }
  section.hero-banner button.slick-arrow {
    display: none;
  }
  section.hero-banner .section-buttons {
    justify-content: center;
  }
  section.hero-banner .slick-prev,
  section.hero-banner .slick-next {
    top: 47%;
  }

  .video-container{
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.vedio-wrap{
  position: relative;
  height: 75vw;
  overflow: hidden;
}
section.hero-banner.video-wrapper .vedio-content-wrap{
  max-width: 100%;
  height: auto;
}
  .cta-columns-wrap {
    flex-flow: wrap;
    justify-content: center;
  }
  
  .attribution a img,
  .attribution a {
    margin-left: 0;
  }
  .cta-slider .cta-columns-wrap .small-img-item {
    width: 47%;
  }
  section.footer-cta .container-full{
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .footer-cta .footer-cta-img {
    width: 100%;
  }
  .footer-cta .footer-cta-text {
    width: 100%;
    display: block;
  }
  .footer-cta .footer-cta-img .image-wrap img {
    object-position: center;
    max-height: 500px;
  }
  .footer-cta .footer-cta-text .text-wrap {
    padding: 50px 20px;
    text-align: center;
  }
  section.tabs-block .container-full .col-6.left-col{
    width: 100%;
    order: 0;
    min-height: 50vw;
  }
  section.tabs-block .tabs-amenities{
    width: 100%;
  }
  .intro-type-1.image-text-block .left-col {
    width: 100%;
  }
  .intro-type-1.image-text-block .right-col {
    width: 100%;
    padding: 30px 0 0;
    text-align: center;
  }
  .full-width-section.amenities-intro .right-col{
    padding: 0;
  }
  .intro-type-1.image-text-block .left-col .image-wrapper img, .intro-type-1.image-text-block .left-col .col-bg img{
    max-height: 500px;
  }
  .amenities-section .right-col {
  width: 100%;
  order: 2;
  }
  .amenities-section .left-col{
    width: 100%;
  }
  .amenities-section .right-col .it-section {
    margin: 0 auto;
    padding: 50px;
    max-width: unset;
  }
  .amenities-section .right-col .it-section .inner-heading-wrapper{
    text-align: center;
  }
  .select-floor-plan, .floorplan-filters .more-flp-filters{
    width: 100%;
    flex-flow: wrap;
    padding: 6px 0;
    gap: 10px;
    justify-content: space-between;
  }
  .floorplan-filters .more-flp-filters div{
    width: 49%;
    padding: 15px 0;
  }
  .floorplan-filters .sqft-range {
    position: relative;
    width: 47%;
  }
  .floorplan-filters .more-flp-filters div:last-child{
    text-align: center;
    width: 100%;
  }
  section.floorplans-listing .single-floorplan{
    width: 50%;
  }
  section.floorplans-listing .single-floorplan .flp-img{
    height: 290px;
  }
  section.floorplans-listing .flp-ctas a{
    min-width: 150px;
  }
  section.floorplans-listing .flp-ctas{
    justify-content: center;
    gap: 6px;
  }
  section.neighborhood .fliters-map-container .nbp-filter-options{
    display: none;
  }
  section.neighborhood .nbp-fliter-dropdown{
    display: block;
    width: 100%;
  }
   .gallery-section .magnific-img,.gallery-section .gallery-tabs .img-gallery-magnific > .magnific-img:nth-child(5n + 4),.gallery-section .gallery-tabs .img-gallery-magnific > .magnific-img:nth-child(5n + 5) {
    width: 49%;
  }
  .intro-type-1.image-text-block .right-col .subcol{
    width: 100%;
  }
  .contact-intro .contact-page-desc{
    text-align: left;
  }
  section.resident-sections .single-resident-section{
    width: 48%;
  }
  section.resident-sections .single-resident-section{
    min-height: 50vw;
  }
  section.resources-boxes .resources-boxes-wrapper .flexi-resource-links .single-resource{
    width: calc(50% - 40px);
  }
  section.inner-hero h1,
  .nbp-places-heading
  {
    text-align: center;
  }
  section.inner-hero h1
{
  font-size: 2rem;
}

h2.section-title {
  font-size: 1.6rem;
}
  
  .full-width-section.amenities-section .right-col .it-section{
    padding: 50px;
  }
  .floorplan-filters .container{
    padding: 25px;
    padding-bottom: 0;
  }
  section.blog-details-block .container {
    display: flex;
    flex-flow: column;
  }
  
  section.blog-details-block .post-content-inner {
    padding-left: 0px;
    width: 100%;
  }
  
  section.blog-details-block .post-content-inner .block-paragraphs {
    width: 100%;
    padding-right: 0px;
  }
  
  section.blog-details-block .post-sidebar {
    width: 100%;
    padding-left: 0;
    order: 2;
  }
  
  section.blog-details-block .social-share {
    position: relative;
    top: 0;
    order: 2;
  }
  
  section.blog-details-block .social-share .social-share-group {
    display: flex;
    margin: 10px;
    justify-content: center;
  }
  
  section.blog-details-block .social-share a.social-share-link {
    margin-right: 10px;
  }
  
  section.blog-details-block .post-sidebar .widget-title {
    font-size: 30px;
  }
  
  section.blog-details-block .post-sidebar .cat-list {
    padding: 50px 0;
  }
  .gallery-section .img-gallery-magnific.desktop-only{
    display: none;
  }
  .gallery-carousel.mobile-only{
    display: block;
  }
  footer .contact, footer .address, footer .email-contact{
    min-width: unset;
    padding: 0 15px;
  }
  section.neighborhood .fliters-map-container{
    padding: 0 25px;
  }
}

@media screen and (max-width: 767px) {
  header .menu-section {
    width: 150px;
  }

  .header-top {
    padding: 5px 0;
  }

  .header-cta a.btn,
  .header-contact {
    display: none;
  }

  header .menu-trigger {
    top: 0px;
    right: 0px;
  }

  header .logo-section {
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 1;
  }
  section.hero-banner
    .slide-flex-wrapper
    .container
    .slide-content
    h1.hero-title,
  section.hero-banner .video-content h1.hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 15px;
  }
  
  section.hero-banner .hero-subtitle {
    margin: 0 0 15px;
  }
  section.home-floorplans .filter .home-flp-desktop-filters {
    display: none;
  }
  .nbp-fliter-dropdown,
  .swifty-gallery-mobile-tabs-dropdown,
  .mobile-home-flp-filter,
  .swifty-gallery-mobile-tabs-dropdown {
    display: block;
    margin: 0;
    width: 100%;
    padding: 20px;
  }
  .home-intro .it-image-section {
    max-height: 400px;
  }
  .cta-slider .cta-columns-wrap .small-img-item {
    width: 100%;
  }
  .footer .footer-address {
    flex-direction: column;
    gap: 30px;
  }
  section.hero-banner .slide-bg {
    height: 60vh;
  }
  section.hero-banner .slide-flex-wrapper .container {
    display: flex;
  }
  section.hero-banner .slick-prev,
  section.hero-banner .slick-next {
    top: 42%;
  }
  section.hero-banner .slick-prev {
    left: 10px;
    transform: translate(0%, -95%);
  }
  section.hero-banner .slick-next {
    right: 10px;
    transform: translate(10%, -95%);
  }
  section.hero-banner .hero-container,
  section.hero-banner .video-slider-outer-wrapper,
  section.hero-banner .video-slider-outer,
  section.hero-banner .video-gallery-slider,
  section.hero-banner .video-gallery-slider ul.slides,
  section.hero-banner li.single-video-slide,
  section.hero-banner .video-bg.auto-thumbnail,
  section.hero-banner .slider,
  section.hero-banner .slider .slick-list,
  section.hero-banner .slider .slick-list .slick-track,
  section.hero-banner .slick-slide,
  section.hero-banner .slide-outers {
    height: auto;
  }
  .tabs-block .tab-content .tab-content-wrap .intro-heading {
    text-align: center;
  }
  .home-gallery .img-gallery-magnific {
    max-width: 100%;
  }
  .home-gallery .slick-list {
    overflow: hidden;
  }
  .home-gallery .slick-initialized .slick-slide.slick-center{
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    margin: 0px !important;
  }
  .home-gallery .slick-initialized .slick-slide img {
    object-fit: cover;
    min-height: 431px;
  }
  .home-gallery .container-full {
    padding-bottom: 60px;
  }
  .form-section .container-full{
    width: 100%;
  }
  .form-section .left-col{
    width: 100%;
  }
  .form-section .right-col{
    width: 100%;
    order: -1;
    max-height: 400px;
  }
  section.form-section .form-wrap .subcol .formmangr-col{
    width: 100%;
    padding: 0;
  }
  .floorplan-filters .more-flp-filters div{
    width: 100%;
  }
  section.neighborhood .fliters-map-container{
    padding: 0 20px;
  }
  section.floorplans-listing .single-floorplan{
    width: 100%;
  }
  section.floorplans-listing .single-floorplan .flp-img{
    height: 290px;
  }
  .floorplan-filters{
    padding-top: 0;
  }
  .nbp-filter-places{
    padding: 30px 0px;
  }
  .nb-places-ul{
    justify-content: space-between;
  }  
  .nb-places-ul li{
    width: 47%;
  }
  .single-virtual-tour, .type-grid .single-virtual-tour {
    width: 100%;
    margin: 0 0 40px;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    padding: 20px;
  }
  .vt_list-grid-toggle {
    display: none;
  }
  .single-virtual-tour .vt_img {
    width: 100%;
  }
  .vt-flp-info {
    width: 100%;
    padding: 20px 0 0;
  }
  .attached-flp-info, .vt-flp-info h2 {
    max-width: 100%;
    text-align: center;
  }
  .attached-flp-info, .vt-flp-info h2 {
    max-width: 100%;
    text-align: center;
  }
  .virtual-tour-btns {
    width: 100%;
    justify-content: center;
    flex-flow: wrap;
  }
  .contact-intro .contact-address-column{
    width: 100%;
  }
  .contact-intro .directions{
    width: 100%;
    text-align: left;
    margin: 15px 0 0 60px;
  }
  .contact-intro .office-hours {
    width: 90%;
  }
   section.resident-sections .single-resident-section {
    width: 100%;
  }
  section.resources-boxes .resources-boxes-wrapper .flexi-resource-links .single-resource{
    width: 100%;
    margin: 0 0 20px;
  }
  section.hero-banner.video-wrapper{min-height: auto;}
  .tabs-block .tab-image img.flp-pmc-logo{
    height: 200px;
  }
  .walk-score-section .nb-scores,
  section.resources-section .fixed-links a.fixed-resource-link
  {
    width: 100%;
  }

  section.resources-section .fixed-links a.fixed-resource-link{
    margin-bottom: 0;
  }
  header.collapsed .logo-section{
    height: auto;
  }
  .copyright-text{
    margin-right: 0;
  } 
  .full-width-section.amenities-section .right-col .it-section,
  .amenities-section .right-col .it-section
  {
    padding: 20px;
}
.full-width-section.intro-type-1 .it-section{
  padding: 0 20px;
}

.amenities-intro.full-width-section.intro-type-1 .it-section{
  padding: 0;
}
.footer-lower{
  padding-bottom: 70px;
  padding-top: 30px;
}
.gallery-section .magnific-img,.gallery-section .gallery-tabs .img-gallery-magnific > .magnific-img:nth-child(5n + 4),.gallery-section .gallery-tabs .img-gallery-magnific > .magnific-img:nth-child(5n + 5) {
  width: 100%;
}
section.map-wrapper{
  height: 80vw;
}
ul.policy-nav li{
  margin-bottom: 15px;
}
.flp-images, .flp-sldr-wrapper{
  width: 100%;
  padding-right: 0px;
}
section.inner-hero{
  max-height: unset;
}
section.resources-section .fixed-links a.fixed-resource-link{
  width: 100%;
}
section.floorplans-listing .flp-ctas a{
  min-width: unset;
  width: 100%;
}
section.site-footer{
  padding: 55px 15px 55px;
}
section.neighborhood ul.nb-places-ul li.nb-places:last-child a{
  border-bottom: 0;
}
.walk-score-section h2.section-title {
  margin-bottom: 20px;
}
.walk-score-section{
  padding-top: 50px;
    padding-bottom: 50px;
}
.walk-score-section .score-wrap-inner{
  gap: 0px;
}
.walk-score-section .score-number{
  font-size: 5.25rem;
}
.walk-score-section .score-desc{
  padding: 20px 15px;
}
.map-canvas{
  height: 60vw;
}
.available_flp h2,
.unavailable_flp h2
{
  margin-bottom: 8px;
}
.form-section .form-img-col{
  padding-left: 0;
}
.gallery-section {
  padding: 0px 20px 50px;
}
.home-floorplans .slick-track .slick-slide {
  margin: 0 5px;
  border-radius: 10px;
}
.floorplans-container .home-floorplans-slider{
  padding:0;
}
}

@media screen and (max-width: 426px){
  section.tabs-block .tabs-amenities .tabs-stage .tab-content .tab-content-wrap ul.amenities-grid, .amenities-section .right-col ul.amenities-grid{
    columns:1;
  }
  .floorplan-filters .sqft-range {
    position: relative;
    width: 46%;
  }
  .floorplan-filters .flp-reset {
      width: 100%;
  }
  .nb-places-ul li{
    width: 100%;
  }

  .desktop-bg {
    display: none;
  }
  .mob-bg {
    display: block;
  }
  .desktop-bg.slider-mob {
    display: block;
  }
}

/* All-page FAQ bridge for legacy themes */
.all-page-faq-section .faq-accordion {
  width: 100%;
}
.all-page-faq-section .faq-item {
  position: relative;
}
.all-page-faq-section .faq-question {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 32px;
  padding: 0 48px 28px 0;
  position: relative;
  text-align: left;
  transition: 0.25s ease;
}
.all-page-faq-section .faq-question span {
  display: block;
}
.all-page-faq-section .faq-question .faq-icon,
.all-page-faq-section .faq-question .minus-plus {
  display: none;
}
.all-page-faq-section .faq-question:after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
}
.all-page-faq-section .faq-question.active:after {
  content: "-";
}
.all-page-faq-section .faq-answer {
  display: none;
  overflow: hidden;
  padding: 0 0 28px;
  margin: -18px 0 32px;
}
.all-page-faq-section .faq-answer p:last-child {
  margin-bottom: 0;
}
