/*
Theme Name: Colony
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/css?family=Yanone+Kaffeesatz:100,200,300,400,500,600,700|Open+Sans:100,200,300,400,500,600,700");

/* ===== Global Styles ===== */
html {
  font-size: 100%;
}

body {
  font-family: "Open Sans", Helvetica, Arial, "sans-serif";
  padding: 0 60px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-font,
.btn {
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
}

h2.section-title {
  font-size: 2.75rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
  position: relative;
  letter-spacing: 5px;
}

h3.section-sub-title,
h3.section-subtitle {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 3px;
  font-weight: 500;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
  margin: 15px auto;
  text-transform: uppercase;
}

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

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

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

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

/* header.collapsed .menu-trigger,
header.collapsed .menu-trigger span {
  color: #fff;
} */

header.collapsed {
  background-color: #6084a0;
}

.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.4;
  margin: 0 0 20px;
  font-weight: 400;
}

.section-content p {
  font-size: 1.2rem;
}

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: 9999;
  width: calc(100% - 120px);
  transition: all 0.5s ease;
  align-items: center;
  padding: 0 15px;
}

.header-inner {
  text-align: right;
  font-size: 0;
}

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

header.collapsed .header-inner {
  border-bottom: none;
}

.header .main-menu-wrapper,
.header .header-cta {
  width: calc(48% - 100px);
}

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;
  /* padding-left: 15px; */
}

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: 80px;
  display: flex;
  align-items: center;
  margin: 0;
  transition: all 0.5s ease;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: right;
  top: 0;
  right: 0;
  z-index: 99;
  max-width: 115px;
  padding-left: 75px;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
}

header .menu-trigger span {
  position: absolute;
  width: 45px;
  height: 0px;
  border-bottom: 4px solid;
  left: 0;
  top: 50%;
  transition: all 0.5s ease 0s;
  transform: translateY(-50%) scale(-1, 1);
}

header .menu-trigger span:first-child {
  top: calc(50% - 10px);
}

header .menu-trigger span:nth-child(2) {
  width: 30px;
}

header .menu-trigger.menu-active span:first-child {
  top: 45%;
  transform: rotate(45deg);
  width: 45px;
}

header .menu-trigger.menu-active span:nth-child(3) {
  top: 45%;
  transform: rotate(-45deg);
  width: 45px;
}

header .menu-trigger.menu-active {
  font-size: 0;
}

header .menu-trigger.menu-active span:nth-child(2) {
  display: none;
  transition: all 0.5s ease 0s;
}

header .menu-trigger:hover span {
  width: 35px;
}

header .menu-trigger span:last-child {
  top: calc(50% + 10px);
}

header .logo-section {
  padding: 10px 0;
  transition: all 0.5s ease 0s;
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  justify-content: center;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  position: relative;
  text-align: center;
}

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

header .logo-section a.logo img {
  width: auto;
  transition: all 0.5s ease 0s;
  max-height: 60px;
  /* max-width: 280px; */
  height: auto;
  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 .logo-section a.logo .header-logo-img {
  width: 200px;
}

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

.main-menu-panel .logo-section {
  display: flex;
}

.main-menu-panel a.main-logo {
  width: 100%;
  display: block;
  float: left;
}

header .logo-section a.logo .header-logo-text {
  padding: 5px 0;
}

header .logo-section a.logo .text-logo,
footer .footer-logo-wrapper .text-logo
{
  font-size: 1.7rem;
  margin: 0px;
  font-weight: 700;
  text-align: center;
}

/* .main-menu-panel a.main-logo .header-logo-img img {
  height: 70px;
} */

.main-menu-panel .header-logo-img a.main-logo{
  max-width: 200px;
  margin: 0 auto;
}

.main-menu-panel a.main-logo .header-logo-text .text-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;
  height: 100%;
}

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

header.collapsed .logo-section {
  transition: all 0.5s ease;
}

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

.header-cta {
  padding: 15px 0 15px 15px;
  position: relative;
  display: flex;
  vertical-align: middle;
  text-align: right;
  justify-content: end;
}

.header-cta a.btn {
  display: inline-block;
  margin: 0px;
  white-space: nowrap;
  font-weight: 700;
  margin-left: 15px;
  padding: 15px 40px;
  text-transform: uppercase;
  line-height: 1;
  min-width: auto;
}
.above-two-cta-btn .header-cta {
  width: calc(100% - 320px);
}
.above-two-cta-btn .logo-section {
  margin-left: 20px;
}
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;
}

.slide-menu.main-menu-panel {
  position: fixed;
  transition: all 0.5s ease 0s;
  transform: none;
  width: calc(100% - 120px);
  height: calc(100% - 60px);
  top: 80px;
  display: flex;
  flex-flow: wrap;
  padding: 0;
  overflow: auto;
  z-index: -9 !important;
  opacity: 0;
}

.main-menu-panel.open {
  z-index: 9999 !important;
  opacity: 1;
}

.main-menu-left,
.main-menu-right {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.main-menu-left {
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
  position: relative;
}

.menu-overlay{
  background-color: #000000;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

.main-menu-right {
  background-blend-mode: multiply;
  text-align: center;
}

.main-menu-panel .social-bar {
  width: 100%;
  transform: translateY(0);
}

.main-menu-panel .mobile-menu {
  text-align: center;
  width: 100%;
}

.main-menu-panel ul.main-menu {
  text-align: center;
  height: auto;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.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;
  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: 10px 0;
  font-size: 1.375rem;
  font-weight: 400;
  transition: all 0.5s ease 0s;
  line-height: 1.2;
  letter-spacing: 4px;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
}

.main-menu-panel ul.policy-nav {
  text-align: center;
  margin: 20px 0px;
  overflow: hidden;
}

.main-menu-panel ul.policy-nav li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.375rem;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0 20px;
  border-right: 2px solid;
  margin-bottom: 20px;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
}

.main-menu-panel ul.policy-nav li::after {
  display: none;
}

.main-menu-panel ul.social-links {
  display: flex;
  width: 100%;
  justify-content: center;
}
/* update this boiler plate css */
.main-menu-panel ul.social-links li.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-menu-panel ul.social-links li.social-icon a {
  width: 20px;
  height: 20px;
  background-color: transparent;
}
.main-menu-panel ul.social-links li.social-icon a svg {
  height: 100%;
  width: 100%;
}
section.neighborhood .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;
  position: relative;
}
.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: #000 !important;
  background: #fff;
}

.main-menu-panel .menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  font-size: 3.125rem;
  line-height: 40px;
  display: block;
  text-align: center;
  transform: rotate(45deg);
  display: none;
}

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

.main-menu-panel .header-cta {
  display: block;
  padding-top: 0px;
}

.main-menu-panel .header-cta a.btn {
  display: inline-block;
  margin: 0 5px 0 0;
}

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

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

.main-menu-panel .contact {
  margin: 20px 0 10px;
}

.main-menu-panel .address,
.main-menu-panel .contact {
  font-size: 1.375rem;
  letter-spacing: 1px;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
}

.main-menu-panel .contact a {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  word-break: break-all;
}

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

.main-menu-panel .header-cta {
  text-align: left;
  padding-left: 0;
  display: flex;
  flex-flow: wrap;
  justify-content: start;
  gap: 10px;
}

.header ul.main-menu li.menu-item a.menu-item-link {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

section.intro-type-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.intro-type-2 h2,
.intro-type-1 h2 {
  position: relative;
  margin-bottom: 70px;
}
.intro-type-2 h2::after,
.intro-type-1 h2::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 3px;
  background: #b0a6a1;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}

section#inner-intro .col-6.left-col{
  display: none;
}
/* section#inner-intro.intro-type-2 h2.section-title:before {
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-15px);
}
 */
/* section.intro-type-2:before {
  content: "";
  width: 100%;
  height: 30vw;
  background-image: url(../images/stinger-shape.svg);
  position: absolute;
  top: -1px;
  background-position: bottom center;
  transform: rotate(180deg);
  left: 0;
  background-repeat: no-repeat;
  background-size: 101% auto;
} */

/* ====== ENd intro common style ===== */
/* Main Container */
.main-content {
  padding-top: 80px;
  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;
  min-height: 100vh;
}

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: 0px;
}

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-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mob-bg {
  display: none;
}

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.5;
  background: #000;
}

section.hero-banner .slide-flex-wrapper {
  height: 100%;
  z-index: 9;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

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

section.hero-banner .slide-flex-wrapper .container {
  height: auto;
  position: relative;
}

/* section.hero-banner .slide-flex-wrapper .container .slide-content {
  color: #fff;
  position: relative;
  padding: 0px;
  overflow: hidden;
  min-height: 350px;
  text-align: center;
  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;
  text-transform: none;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
  letter-spacing: 10px;
  text-transform: uppercase;
}

section.hero-banner h2.hero-subtitle {
  font-size: 3.7rem;
  font-weight: 200;
  margin: 0 0 25px;
  padding: 0;
  display: inline-block;
}

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

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

section.hero-banner .slider-container .slick-dots {
  width: auto;
  left: auto;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  padding-right: 15px;
  display: flex;
  flex-direction: column;
}

section.hero-banner .slider-container .slick-dots > li {
  display: inline-block;
  border-radius: 0;
  overflow: hidden;
  margin: 5px 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 2px;
}

section.hero-banner .slider-container .slick-dots > li button {
  opacity: 0;
  font-size: 0;
  line-height: 20px;
  width: 10px;
  height: 10px;
  color: #fff;
  display: block;
  text-align: center;
  background-color: #fff;
  border: none;
  margin-left: -1px;
  margin-top: -1px;
}

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

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

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;
}

section.hero-banner .video-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

section.hero-banner .video-wrapper .video-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-slider {
  overflow: hidden;
}

section.hero-banner .hero-slider button.slick-prev {
  left: 25px;
  transform: translate(0, -50%);
}

section.hero-banner .hero-slider button.slick-next {
  right: 25px;
}

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;
  justify-content: center;
  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%;
}

.slick-dots li button {
  border: 1px solid;
  border-radius: 50%;
}

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

body .slick-prev:before,
body .slick-next:before {
  background-position: center;
  font-size: 3.125rem;
  text-align: center;
  width: 100%;
  display: block;
  opacity: 1;
}

body button.slick-next {
  right: 45px;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: repeat;
}

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;
}

/* ====== 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;
}

section.common-intro .subcol{
  text-align: center;
}

/* ====== 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;
  /* justify-content: center; */
  /* align-items: center; */ /*commented for tour page*/
}

.image-text-block .it-container img{
  width: 100%;
  /*for tour page*/
  height: 100%; 
  object-fit: cover;
  object-position: center;
}



.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.image-position-left .col.left-col.home-intro-slider-wrapper {
  margin-top: 80px;
  margin-left: calc(50% - 735px);
}

.reverse .amnety-header .col-6 {
  float: left;
}

.image-text-block.image-position-right .col.right-col .amnety-list,
.image-text-block.image-position-left .col.right-col .amnety-list {
  width: 100%;
  order: 2;
  padding: 50px 0;
  margin-top: -200px;
}

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

.amnety-header .top-bar,
.amnety-header .bottom-bar {
  width: 50%;
  z-index: 6;
}

.neighborhood-intro .intro-content {
  max-width: 780px;
  margin: 0 auto;
}

.common-intro ul{
  line-height: 1.5;
}

.common-intro ul li{
  margin-bottom: 5px;
}

/* ====== Home Intro ===== */
section.home-intro .intro-content{
  width: 100%;
}

section.home-intro .intro-slider-container {
  justify-content: center;
}

section.home-intro .intro-slider .slick-slide {
  display: flex;
  width: 100%;
  max-height: 800px;
}

section.home-intro .intro-slider .slick-slide .slide-bg{
  width: 100%;
}

section.home-intro .intro-slider{
  height: 100%;
}

.it-image-section {
  display: block;
  height: 100%;
  width: 100%;
}

section.home-intro .intro-heading {
  width: 100%;
}

section.home-intro .intro-box-right {
  padding: 80px 50px;
  display: flex;
  align-items: center;
}

section.home-intro .slide-bg img {
  display: flex;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.home-intro .section-buttons {
  margin-top: 30px;
}

/* ====== End intro slider ===== */

/* ====== Home Page styles ===== */
section.home-floorplans {
  margin: 0;
  list-style: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.home-flp-content-outer .section-content {
  margin-bottom: 20px;
}

section.home-floorplans .home-flp-content-outer .col {
  margin: 0 auto;
}

.home-flp-content-outer {
  position: relative;
  order: 2;
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.home-flp-content-outer section.home-floorplans .slick-slide {
  text-align: center;
  font-size: 5rem;
  cursor: pointer;
  margin-right: 20px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  transform-origin: center bottom;
}

section.hero-banner + section.home-floorplans .home-flp-content-outer:before {
  content: "";
  width: 100%;
  height: 94px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

section.home-floorplans .slick-slide[aria-hidden="true"] {
  opacity: 1;
  transition: all 0.5s ease;
}

section.home-floorplans .slick-slide[aria-hidden="false"] {
  opacity: 1;
  transition: all 0.5s ease;
}

section.home-floorplans .slick-slide .floorplan-slide-img {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

section.home-floorplans .slick-slide .floorplan-slide-img img {
  width: 100%;
  display: block;
}

section.home-floorplans .slick-slide .floorplan-slide-details {
  position: relative;
  text-align: left;
  opacity: 1;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

section.home-floorplans .slick-slide.slick-active .floorplan-slide-details {
  opacity: 1;
}

section.home-floorplans .floorplan-slide-details h2 {
  font-size: 2rem;
  text-transform: uppercase;
  display: block;
  padding: 0 30px 0 0;
  text-align: left;
  margin-bottom: 0px;
  margin-top: 0;
  position: relative;
}

section.home-floorplans .floorplan-slide-details h2::after,
section.home-floorplans .floorplan-slide-details h2::before {
  content: "";
  width: 25px;
  height: 3px;
  background: #000;
  position: absolute;
  right: -15px;
  transform: rotate(40deg);
  top: 10px;
}

section.home-floorplans .floorplan-slide-details h2::after {
  transform: rotate(-45deg);
  top: 26px;
}

section.home-floorplans .floorplan-slide-details .bed-bath {
  padding-left: 25px;
}

section.home-floorplans .floorplan-slide-details .bed-bath span {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 10px 0;
  display: block;
  text-align: left;
}
section.home-floorplans .filter {
  width: 100%;
}
section.home-floorplans .filter .home-flp-desktop-filters {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-flow: wrap;
  justify-content: center;
}

.home-floorplans .floorplan-slide-details .btn {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  font-weight: 700;
  margin-left: 25px;
  min-width: auto;
  line-height: 1;
}

section.home-floorplans .filter span {
  display: block;
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  top: -30px;
}

section.home-floorplans .filter .filter-item {
  width: 170px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.home-floorplans .col.flp-slider {
  position: relative;
  display: flex;
  flex-flow: column;
  padding-right: 50px;
}

/* 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;
} */

section.home-floorplans .col.flp-slider-tab {
  padding: 0;
}

section.home-floorplans .col.flp-slider-tab .floorplans-text {
  padding: 40px 25px;
  width: 100%;
  padding-left: 0;
  position: relative;
  text-align: center;
}

.mobile-home-flp-filter {
  display: none;
}

section.home-floorplans .floorplans-container {
  overflow: hidden;
}

section.home-floorplans .floorplans-container.active {
  opacity: 1;
  display: flex;
  transition: all 0.5s ease 0.5s;
  height: auto;
}

section.home-floorplans .floorplans-container .home-floorplans-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}

section.home-floorplans
  .floorplans-container
  .home-floorplans-slider
  .floorplan-slide-img {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 480px;
}

section.home-floorplans
  .floorplans-container
  .home-floorplans-slider
  .floorplan-slide-img
  img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

section.home-floorplans .floorplans-container .property-btn {
  padding: 40px 0;
  margin: 50px 0 0;
  position: relative;
}
.property-icons li.single-prop-icon img {
  width: 100%;
  height: auto;
}

section.home-floorplans .floorplans-container .floorplans-text {
  padding: 40px 25px;
  width: 100%;
  max-width: 540px;
}

.floorplan-slide-img:after,
.floorplan-slide-details:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0.5;
}

.floorplans-slick .slick-next,
.floorplans-slick .slick-prev {
  color: inherit;
  transform: rotate(45deg);
  z-index: 9;
  top: 40%;
}

.floorplans-slick .slick-next:before,
.floorplans-slick .slick-prev:before {
  content: none;
}

.floorplans-slick .slick-next:after,
.floorplans-slick .slick-prev:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 7px solid;
  border-right: 7px solid;
  transform: rotate(0deg);
  z-index: 1;
  border-radius: 0px;
  opacity: 0.8;
}

.floorplans-slick .slick-prev {
  color: inherit;
  transform: rotate(45deg);
  left: 45px;
  right: auto;
}

section.home-floorplans .container .col-6 {
  padding: 0 15px;
}

.floorplans-slick .slick-prev:after {
  transform: rotate(-180deg);
}

.slick-prev.slick-disabled:after,
.slick-next.slick-disabled:after,
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-active .floorplan-slide-img:after,
.slick-active .floorplan-slide-details:after {
  display: none;
}

.floorplan-slide-img:after,
.floorplan-slide-details:after {
  background-color: #ffffff;
}

.home-flp-slider-outer {
  position: relative;
}

section.home-floorplans .floorplans-slick {
  padding-top: 70px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

section.home-floorplans .floorplans-slick .slick-list {
  overflow: visible;
}

section.home-floorplans .flp-slider-wrapper.active {
  opacity: 1;
  display: flex;
  transition: all 0.5s ease 0.5s;
  height: auto;
}

section.home-floorplans .slick-slide.slick-active + .slick-slide {
  opacity: 0.5;
}

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

section.tabs-block .tab-content-wrap {
  padding: 40px 80px;
}

section.tabs-block ul.amenities-grid {
  columns: 2;
  list-style: disc;
  column-gap: 50px;
}

section.tabs-block ul.amenities-grid li {
  font-weight: 400;
  font-size: 1.063rem;
  position: relative;
  line-height: 30px;
  margin-bottom: 5px;
}

section.tabs-block #tab-2 .intro-content.col{
  padding-left: 15px;
}

section.tabs-block .home-amne-desc,
section.amenities-section .section-discription
{
  margin-bottom: 20px;
}

section.tabs-block .home-amne-desc p,
section.amenities-section .section-discription p{
  line-height: 1.8;
}

section.tabs-block .home-amne-desc ul,
section.amenities-section .section-discription ul 
{
  list-style: disc;
  padding-left: 15px;
}

section.tabs-block .home-amne-desc ul li,
section.amenities-section .section-discription ul li
{
  line-height: 30px;
  margin-bottom: 5px;
}

section.tabs-block .amenities-grid-wrap{
  padding-left: 15px;
}

.tabs-block .right-col .tab-image {
  display: flex;
  height: 100%;
}

.tabs-block .right-col .tab-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

.tabs-block .right-col{
  position: relative;
}

/* 
.tabs-block .container-full {
  z-index: 9;
}

section.tabs-block .container-full .col-6 {
  position: relative;
}

section.tabs-block .home-tabs-block-bg {
  display: none;
}

.tabs-block .tab-image img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}

.tabs-block .tab-image.active {
  display: block;
}

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%;
  background: transparent;
  padding: 120px 0;
  min-height: 52.5vw;
}


section.tabs-block .tabs-amenities .tabs-nav {
  position: relative;
  z-index: 1;
  width: 100%;
}

.tabs-block img.intro-pattern.from-top {
  top: calc(240px - 0vw);
  transform: none;
}

section.tabs-block .tabs-amenities .tabs-nav li {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin-right: 60px;
  position: relative;
  border: 1px solid;
}

section.tabs-block .tabs-amenities .tabs-nav li:before {
  width: calc(100% + 80px + 4px - 120px);
  height: calc(100% + 4px);
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  content: "";
  position: absolute;
  background: #ffffff;
}

section.tabs-block .tabs-amenities .tabs-nav li:after {
  content: "";
  position: absolute;
  height: calc(100% + 80px + 4px - 120px);
  width: calc(100% + 4px);
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: #ffffff;
}

section.tabs-block .tabs-amenities .tabs-nav li.active a,
section.tabs-block .tabs-amenities .tabs-nav li a:hover {
  background-color: #dee1e2;
  border-color: #bcc3c4;
  color: #1e343a;
}

section.tabs-block .tabs-amenities .tabs-nav li a {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;

  padding: 20px 25px;
  font-size: 20px;
  z-index: 2;
  transition: all 0.5s ease;
}

section.tabs-block .tabs-amenities .tabs-nav li .tab-line {
  width: 100%;
  position: absolute;
  height: 8px;
  bottom: 45px;
  left: 0;
  transition: all 0.5s ease 0s;
}

section.tabs-block .tabs-amenities .tabs-nav li a .col-bg {
  margin-top: 130px;
  transition: all 0.5s ease 0s;
  filter: grayscale(100);
  height: calc(100% - 180px);
  overflow: hidden;
  border-radius: 0;
}

section.tabs-block .tabs-amenities .tabs-nav li.active a .col-bg {
  margin-top: 0;
  filter: grayscale(0);
  height: calc(100% - 60px);
}

section.tabs-block .tabs-amenities .tabs-nav li.active a .col-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.tabs-block .tabs-amenities .tabs-stage {
  clear: both;
  position: relative;
  opacity: 1;
}

section.tabs-block .tabs-amenities .tabs-stage .tab-content {
  position: relative;
  padding: 20px 0px 0;
  transition: all 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
}

section.tabs-block .tabs-amenities .tabs-stage .tab-content .tab-content-wrap ul.amenities-grid {
  min-height: 100px;
  padding-bottom: 50px;
  columns: 2;
  min-height: 50px;
  padding-left: 20px;
}

section.tabs-block .tabs-amenities .tabs-stage .tab-content .tab-content-wrap ul.amenities-grid li {
  font-weight: 400;
  font-size: 1.163rem;
  position: relative;
  padding-left: 0px;
  line-height: 30px;
  margin-bottom: 5px;
  list-style: disc;
}

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 ===== */
.background-pattern {
  background-repeat: repeat;
}

.home-gallery .left-col .text-content-wrapper {
  max-width: 765px;
  margin: 0 auto;
}

/* / ====== Home Page Gallery Slider ===== /  */
.image-slider-container {
  position: relative;
  width: 100%;
  height: auto;
}

.home-gallery .slick-home-gallery .single-side {
  width: calc(33.33%);
  height: 32vw;
  margin: 0;
  float: left;
}

.home-gallery .slick-home-gallery .single-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-gallery .slick-home-gallery .single-side:nth-child(4) {
  width: 66.66%;
}

.home-gallery .slick-home-gallery .item.single-side a {
  position: relative;
  display: flex;
  height: 100%;
}

.home-gallery .slick-home-gallery .item.single-side a .over-img-logo,
.gallery-section
  .img-gallery-magnific
  .magnific-img
  a.image-popup-vertical-fit
  .over-img-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 60%;
  height: auto;
  width: auto;
  opacity: 0;
  max-height: 250px;
}

.home-gallery .slick-home-gallery .item.single-side:hover a .over-img-logo,
.gallery-section
  .img-gallery-magnific
  .magnific-img:hover
  a.image-popup-vertical-fit
  .over-img-logo {
  opacity: 0.75;
}

/*====== 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;
}

section.multipurpose-boxes .cta-columns-wrap {
  display: flex;
}

section.multipurpose-boxes .cta-columns-wrap .small-img-item {
  width: 33.33%;
  margin: 0;
  position: relative;
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
  height: 33vw;
}
section.multipurpose-boxes .cta-columns-wrap.twoCtaCol .small-img-item{
  width: 50%;
}
section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item{
  width: 100%;
  padding: 0;
  display: flex;
}


section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item:hover .box-img img{
transform: none;
}
section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .box-img{
position: relative;
width: 50%;
}
section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .box-img img{
  top:0;
  transform: none;
  left: 0;
}
section.multipurpose-boxes .cta-columns-wrap .small-img-item .mp-box-content {
  position: relative;
  width: 75%;
  height: auto;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 9;
  left: 50%;
  display: inline-block;
  text-align: center;
  padding: 25px 15px;
}

section.multipurpose-boxes .small-img-item .mp-box-content .cta-btns {
  display: none;
}

section.multipurpose-boxes .small-img-item .mp-box-content h2.section-title {
  margin-bottom: 0px;
}

section.multipurpose-boxes
  .small-img-item
  .mp-box-content
  h3.section-sub-title {
  margin: 0px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.3rem;
  font-family: "Open Sans", Helvetica, Arial, "sans-serif";
}

section.multipurpose-boxes .cta-columns-wrap .small-img-item .box-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

section.multipurpose-boxes .cta-columns-wrap .small-img-item .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.01);
  transition: all 0.4s ease 0s;
}

section.multipurpose-boxes
  .cta-columns-wrap
  .small-img-item:hover
  .box-img
  img {
  transform: translateY(-50%) translateX(-50%) scale(1.15);
}

/* ====== Home form section ====== */

section.form-section .container-full {
  flex-direction: row-reverse;
}

section.form-section .right-col .form-img-col {
  height: 100%;
}

section.form-section .right-col .form-img-col img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.form-section .left-col.form-wrap .subcol {
  padding: 60px;
  margin: 0;
  position: relative;
  z-index: 2;
}

section.form-section .form-wrap .subcol .formmangr-field label.show {
  display: none;
}
section.form-section .section-title {
  padding-left: 10px;
}
.formmangr-row {
  display: flex;
  margin-bottom: 20px;
  min-height: 30px;
  width: 100%;
  flex-flow: wrap;
}

.formmangr-col,
section.form-section .form-wrap .subcol .formmangr-col.field-type-comment
{
  padding: 0 10px 0px 10px;
  margin-bottom: 15px;
  width: 50%;
}

section.form-section .form-wrap .subcol .formmangr-col.field-type-comment, section.form-section .form-wrap .subcol .formmangr-col.field-type-generaic_checkbox{
  width: 100%;
}

.formmangr-col.field-type-comment {
  width: 100%;
}

.formmangr-row .formmangr-input,
.formmangr-row select.formmangr-form-dd,
.formmangr-row .formmangr-field textarea {
  background-color: #ededed;
  border-bottom: none;
  text-transform: capitalize;
  padding: 15px;
}

.form-section .formmangr-row .formmangr-input,
.form-section .formmangr-row select.formmangr-form-dd,
.form-section .formmangr-row .formmangr-field textarea{
  color: #191616;
}

.form-section .formmangr-row .formmangr-input::placeholder,
.form-section select#unit_type_field_name,
.form-section select#referral_field_name,
.form-section select#bedrooms_field_name,
.form-section select#unit_field_name,
.form-section .formmangr-row .formmangr-field textarea::placeholder
{
  color: #191616 !important;
}

.form-section .formmangr-custom-form select {
  background-image: url(../images/arrow-down.svg) !important;
}

.forminator-field {
  text-align: center;
}

.forminator-field .formmangr-button {
  min-width: auto;
  font-family: "Open Sans", Helvetica, Arial, "sans-serif";
}

.field-type-pets, .field-type-contact_by{
  text-align: left;
}

/* ====== End Home form section ====== */

/* ====== Gallery Slider ====== */
.gallery {
  position: relative;
  max-width: 100%;
  border-radius: 4px;
  height: 100%;
}

.gallery-tabs .text-color-light select{
  background-image: url(../images/arrow-down.svg) !important;
}

/* ====== Google Map Section ===== */
section.map-wrapper {
  height: 35vw;
}

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

section.footer-cta .footer-cta-img.image-wrapper {
  display: none;
}

section.footer-cta .text-wrap {
  width: 100%;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

section.footer-cta .text-wrap .section-content {
  margin-bottom: 20px;
}

/*===== Footer =====*/

footer.footer {
  transition: all 0.5s ease;
  padding: 100px 0 0;
  display: flex;
  flex-flow: wrap;
}

section.site-footer {
  display: flex;
  flex-flow: wrap;
  padding: 10px 15px 40px;
}

.footer-left {
  flex-grow: 1;
}

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

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

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

.footer ul.social-links li.social-icon a {
  text-align: center;
}

.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 {
  font-size: 1rem;
  line-height: 1.6;
  text-transform: lowercase;
  margin: 0;
}

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

.footer .contact span{
  display: none;
}

.footer-right {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-address {
  display: flex;
  flex-direction: row;
  align-items: center;
}

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

.footer .address {
  font-size: 1rem;
  padding-left: 15px;
  border-left: 2px solid;
  line-height: 1.8;
}


.footer .address a {
  display: flex;
}

.footer .contact{
  display:flex;
  
}

.footer .contact a{
  padding-left: 18px;
  padding-right: 18px;
}

.footer .contact a.footer-email{
  border-left: 2px solid;
}

.footer .container .footer-menu {
  padding: 0;
  margin-bottom: 50px;
  position: relative;
}

.footer .container .footer-menu ul.footer-menu-wraper {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.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;
}

.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: wrap;
  justify-content: center;
  align-items: center;
}

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

.copyright-text {
  display: inline-block;
  width: auto;
  margin-right: 15px;
}

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;
}

.property-icons {
  display: inline-block;
  margin-left: auto;
}

.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;
}

.text-color-dark.attribution a.cb-logo-link img[src$=".svg"] {
  filter: brightness(1) invert(1);
}

.text-color-light.property-icons li.single-prop-icon img[src$=".svg"]{
  filter: brightness(0) invert(1);
}



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

.attribution {
  text-align: right;
  width: 100%;
}

.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 {
  font-size: 1.125rem;
  line-height: 1.5;
}

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

.footer .contact .callus {
  display: block;
  font-weight: 600;
}

footer .social-bar{
  width: 100%;
    order: 3;
    text-align: center;
    margin-top: 30px;
}

.footer .contact .phone-no,
.footer .contact .email {
  display: block;
  font-weight: 600;
}
/* common css on only in mobile footer */
.mobile-ctas {
  position: fixed;
  width: 100%;
  display: flex;
  left: 0;
  bottom: 0;
  z-index: 999;
}
a.single-mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.45);
  border-right: 1px solid;
  color: #fff !important;
  font-size: 36px;
}
a.single-mobile-cta svg {
  width: 30px;
  height: 30px;
}
a.single-mobile-cta span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}
/* End footer */

/* ====== 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;
}

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: center;
  align-items: center;
  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.overlapping-text-box
  .inner-hero-container
  .inner-hero-img
  .inner-wrapper-overlay {
  position: absolute;
  background-color: rgb(0 0 0 / 30%);
  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;
  max-height: 400px;
  padding: 100px 0;
}

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



section.inner-hero h1 {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 4rem;
  padding: 0px 75px;
  display: inline-block;
  font-family: "Yanone Kaffeesatz", Helvetica, Arial, "sans-serif";
  text-align: center;
}

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

.amenities-intro.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;
  padding: 0 20px;
}

/* .image-text-block.amenities-intro .it-container {
  align-items: center;
} */

.image-text-block.amenities-intro .it-container .right-col {
  padding: 80px 20px;
  /* width: 100%; */
  display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
}

.intro-type-1.image-text-block .left-col .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
}
.community-amenities .left-col {
  order: 2;
}
.amenities-section .right-col .it-section {
  padding: 60px;
}
.amenities-section ul.amenities-grid {
  columns: 2;
  list-style: disc;
  padding-left: 15px;
}

.amenities-section .amnety-header .image-wrapper {
  height: 100%;
}
/* ==== Start Amenities intro section ==== */
/* .intro-type-1.image-text-block .left-col {
  width: 35vw;
  height: 35vw;
} */

/* ==== End Amenities intro section ==== */

/* ==== Inner Page Amenities, Amenities section common css ==== */
.amenities-section .amnety-header .image-overlay {
  display: none;
}

/* ==== End Inner Page Amenities, Amenities section common css ==== */

/* ==== Inner Page Amenities, Resident Amenities section==== */
.resident-amenities.amenities-section .it-section {
  flex-direction: column;
}

/* ==== End Inner Page Amenities, Resident Amenities section ==== */

/* ==== Start Tour Page ==== */
.tour-intro .section-content {
  max-width: 900px;
  margin: 0 auto;
}

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

/* ====== Gallery Page ===== */
.swifty-gallery-mobile-tabs-dropdown {
  display: none;
}
.gallery-tabs ul.gallery-tabs-nav {
  display: flex;
  text-align: center;
  padding-bottom: 100px;
  z-index: 9;
  position: relative;
  justify-content: center;
}
.gallery-tabs ul.gallery-tabs-nav li a {
  display: inline-block;
  width: auto;
  border: none;
  padding: 20px 45px;
  margin: 0 35px;
  transition: all 0.5s ease;
}
.gallery-section .gallery-stage .img-gallery-magnific.gallery-col {
  display: flex;
  flex-flow: wrap;
  padding: 0;
}
.gallery-section .gallery-stage .img-gallery-magnific .magnific-img {
  width: calc(33.33%);
  height: 32vw;
  margin: 0;
  position: relative;
}
.gallery-section
  .img-gallery-magnific
  .magnific-img
  a.image-popup-vertical-fit
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* ====== End Gallery Page ===== */

/* ====== Floorplan Filters Section ===== */
.floorplan-filters {
  padding: 0 60px;
  overflow: hidden;
  height: 104px;
  position: relative;
  transition: all 0.5s ease 0s;
}
.floorplan-filters.fixed {
  position: fixed;
  top: 0px;
  z-index: 999;
}
.floorplan-filters .container {
  padding: 30px 0;
}
.floorplan-filters h2 {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
.floorplan-filters select.flp-bedrooms {
  display: inline-block;
  width: 270px;
  margin-left: 25px;
  font-size: 16px;
  padding: 10px;
  border-radius: 0;
  height: 45px;
  outline: none;
}
.floorplan-filters a.flp-filters-trigger {
  display: block;
  position: absolute;
  right: 40%;
  top: 26px;
  width: 170px;
  text-align: center;
  padding: 10px 10px;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
.floorplan-filters .flp-reset{
  padding: 12px 30px;
}
.floorplan-filters.fixed {
  width: calc(100% - 220px);
}
.floorplan-filters.active {
  height: 255px;
}
.floorplan-filters .more-flp-filters {
  padding-top: 60px;
  display: flex;
}
.floorplan-filters .more-flp-filters div {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 15px 25px;
  border-right: 1px solid #cdcdcd;
}
.floorplan-filters .more-flp-filters div select {
  min-width: 130px;
  margin: 0;
  font-size: 16px;
  padding: 10px;
  border-radius: 0;
  -webkit-appearance: none;
  height: 45px;
  outline: none;
  border: none;
  display: inline-block;
  background-color: #fff;
  color: #000;
}
.floorplan-filters .more-flp-filters div h2 {
  margin: 0 20px 0 0;
}
.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 {
  border: none;
  padding-bottom: 0;
  padding-top: 0;
}
.floorplan-filters .more-flp-filters .reset-new-flp-filtrers {
  margin-bottom: 0;
  cursor: pointer;
  margin-top: 0;
}

.card-container .flp-row{
  padding-bottom: 60px;
}

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

.floorplans-intro .section-content {
  max-width: 780px;
  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;
}

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

section.floorplans-listing .single-floorplan {
  width: 33.33%;
  margin: 0;
  padding: 10px;
  transition: all 0.5s ease 0s;
  /* background-color: #fff; */
}

section.floorplans-listing .single-floorplan h2.flp-title {
  font-size: 1.875rem;
  width: 100%;
  float: left;
  text-align: left;
  margin: 0px;
  margin-bottom: 30px;
  order: 1;
}

section.floorplans-listing .single-floorplan .flp-header {
  padding: 20px 20px 10px;
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  flex-flow: wrap;
  align-items: flex-start;
  background-color: #fff;
}

.flp-listing .flp-slide-in-trigger {
  order: 1;
  display: block;
  position: relative;
}

section.floorplans-listing .flp-header-l h2 {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.688rem;
}

section.floorplans-listing .flp-listing .single-floorplan .flp-header .flp-header-l {
  display: flex;
  width: 60%;
  flex-flow: wrap;
  order: 2;
}
section.floorplans-listing .flp-header-r {
  width: 40%;
  margin: 0px;
  display: inline-block;
  margin-top: 0px;
  font-weight: 700;
  order: 3;
}
section.floorplans-listing .flp-listing .single-floorplan .flp-header .flp-header-l span {
  padding: 5px 0px;
  font-size: 1rem;
  font-weight: 300;
  line-height: unset;
  margin: 0;
}
section.floorplans-listing .flp-header-l .flp-sq-ft {
  display: block;
  width: 100%;
}

section.floorplans-listing .flp-header-r .price-box {
  font-size: 1.2rem;
  text-transform: capitalize;
  cursor: pointer;
  text-align: right;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

section.floorplans-listing .flp-header-r .price-box span {
  font-weight: 700;
}

section.floorplans-listing .single-floorplan .flp-swaps {
  display: flex;
  text-align: center;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  min-height: 50px;
  position: relative;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

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

section.floorplans-listing .single-floorplan .flp-swaps a.active {
  font-weight: 700;
}

section.floorplans-listing .single-floorplan .flp-swaps a:not(.active) {
  background-color: transparent;
}
section.floorplans-listing .single-floorplan .flp-swaps a {
  border: 2px solid;
  padding: 5px 10px;
  text-transform: uppercase;
  margin: 5px;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
  min-width: auto;
  height: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
}

section.floorplans-listing .single-floorplan .flp-img {
  width: 100%;
  vertical-align: middle;
  max-width: 450px;
  height: 450px;
  margin: 0 auto;
  position: relative;
  order: 1;
  background-color: #fff;
  padding-bottom: 10px;
}

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;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  top: 50%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

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;
  /* background-color: #f5f5f5; */
  /*  height: 0;
  padding-bottom: 100%; */
}

.bg-grey {
  background: #d9d9d9;
}

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

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

/* ====== 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;
}

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: 0;
  z-index: 2;
}

body .flp-slidein-slider button.slick-next {
  right: 0;
  z-index: 2;
}

.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;
} */

.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 {
  width: 30%;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

.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;
}

.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 .virtual-tour-btns {
  width: 100%;
  justify-content: center;
}
.type-grid .vt-flp-info h2 {
  text-align: 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: calc(100vw - 137px);
}

.amp-slide_in.theme_3 .slide_in-right{
  flex-flow: column;
}

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

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

.amp-slide_in-close span{
  top: -3px;
}

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

/* ====== Neighborhood Block styles ===== */
section.neighborhood .nbp-fliter-dropdown {
  display: none;
}
/* section.neighborhood .map-canvas{
  width: 100%;
} */
section.neighborhood .map-canvas {
  width: 100%;
  height: 50vh;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}
section.neighborhood .map-canvas .map-wrap {
  display: flex;
  height: 100%;
}
section.neighborhood .nbp-filter-options {
  width: 100%;
  display: flex;
  padding: 0px;
}
section.neighborhood a.nb-map-filter {
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding: 55px 5px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  border-left: 1px solid;
}
section.neighborhood a.nb-map-filter:first-child {
  border-left: 0;
}
section.neighborhood ul.nb-places-ul {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
section.neighborhood ul.nb-places-ul li.nb-places {
  width: calc(50% - 40px);
  margin: 0 20px;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
section.neighborhood ul.nb-places-ul li.nb-places a {
  display: block;
  padding: 20px;
  transition: all 0.5s ease;
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 500;
}
section.neighborhood ul.nb-places-ul li.nb-places a:hover {
  background-color: #f5f5f5;
}
section.neighborhood .nbp-places-heading {
  font-size: 4rem;
}
/* ====== Walk Score Block styles ===== */
.walk-score-section {
  position: relative;
  text-align: center;
}

.walk-score-section .bg-walk {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  overflow: hidden;
}

/* .walk-score-section .bg-walk .image-wrap::after {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
} */

.overlapping-text-box .bg-walk img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.walk-score-section .center-block {
  z-index: 9;
  position: relative;
}

.walk-score-section .walscore-container {
  padding: 50px 20px;
  flex-direction: column;
}

.walk-score-section .walscore-container .walk-score-text {
  justify-content: center;
}
.walk-score-section .bg-walk .image-wrap {
  height: 100%;
}
.walk-score-text .nb-scores {
  display: inline-block;
  margin: 15px 35px;
  position: relative;
  width: 225px;
} 

.nb-scores .score-inner {
  width: 195px;
  height: 195px;
  border: 1px solid;
  border-radius: 50%;
  line-height: 2;
  font-weight: 700;
  font-size: 5.68rem;
  margin: 0 auto;
}


.walk-score-section .nb-scores .score-wrap-inner .score-desc {
  margin: 20px 0 0;
  padding: 15px 0 0;
  border-top: 2px solid;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ====== Contact Page Block Style ===== */
section.contact-intro .left-col .col-bg {
  height: 100%;
}
section.contact-intro .left-col .col-bg img {
  height: 100%;
  object-fit: cover;
}
section.contact-intro .subcol {
  padding: 80px 20px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.contact-intro .subcol.details-wrapper{
  flex-direction: unset;
}
.contact-page-logo {
  width: 40%;
  text-align: center;
}
.contact-page-desc {
  width: 59%;
  border: none;
  padding-left: 20px;
}
.contact-page-logo img {
  max-width: 80%;
}
.contact-page-desc .address-wrap span.property-name,
.contact-page-desc .office-hours p, .call-section div.title {
  text-decoration: underline;
  display: block;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, "sans-serif";
  margin-bottom: 8px;
  margin-top: 18px;
}
.contact-page-desc .address-wrap .directions {
  padding-top: 20px;
  padding-bottom: 10px;
}
.contact-page-desc .address-wrap .contact-property-name {
  max-width: 300px;
  display: block;

}
.contact-page-desc .directions a {
  font-weight: 700;
  text-decoration: underline;
}
.contact-page-desc p,
.daily-hours {
  font-weight: 500;
  line-height: 1.5;
}
.contact-page-desc .daily-hours span {
  display: inline-block;
  width: 100px;
  text-transform: capitalize;
}
/* ====== Resident Page ===== */
.resident-heading .section-content,
.resources-heading .section-content {
  max-width: 900px;
  margin: 0 auto;
}

/* ====== Resident Block Style ===== */
section.resident-sections {
  max-width: 100%;
  font-size: 0;
  display: flex;
  flex-flow: wrap;
}

section.resident-sections .container {
  flex-flow: wrap;
  max-width: 1170px;
}

section.resident-sections .single-resident-section {
  font-size: 18px;
  width: calc(50% - 10px);
  padding: 15px;
  min-height: 300px;
  display: flex;
  margin: 0 5px 40px;
  transition: all 0.5s ease 0s;
  position: relative;
}

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: flex;
  width: 100%;
  flex-flow: column;
  justify-content: center;
}

section.resident-sections h2.resident-section-title {
  font-size: 3.2rem;
  font-weight: 400;
  margin: 0;
  position: relative;
  line-height: 1.2;
  padding-left: 10%;
  text-transform: uppercase;
}

section.resident-sections h3.resident-section-subtitle {
  margin: 5px 0 0;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-left: 10%;
  margin: 5px 0 0;
}
section.resident-sections h2.resident-section-title::after {
  content: " ";
    border-right: 6px solid;
    border-top: 6px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    top: 21%;
    height: 20px;
    width: 20px;
    left: 2%;
}

section.resident-sections .single-resident-section a svg{
  display: none;
}

section.resident-sections .two-columns{
  align-items: unset;
}

/* ====== FAQ Section ===== */
.faq-section {
  margin-top: 50px;
}
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;
  padding: 0;
  border-top: 1px solid #cdcdcd;
}
section.faq-section .question:first-child {
  border-top: none;
}
section.faq-section .question.que-bg {
  display: block;
  padding: 35px 50px 35px 0px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.9rem;
  position: relative;
  font-family: "Cormorant Garamond", Helvetica, Arial, "sans-serif";
}

section.faq-section .answer p {
  margin-bottom: 20px;
}
section.faq-section .answer {
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

section.faq-section .question,
section.faq-section .answer {
  position: relative;
}

.faq-heading .text-content-wrapper {
  flex-flow: column;
}

dl.accordion dt:after {
  content: "+";
  position: absolute;
  right: 0;
  bottom: -10px;
  line-height: 1;
  font-size: 35px;
  font-weight: 700;
}

.container.faq-grid {
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
}

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

.faq-list {
  padding: 50px;
}
section.faq-section .question svg {
  position: absolute;
  right: 24px;
  width: 30px;
  top: 22px;
  top: 50%;
  transform: translateY(-50%);
}

section.faq-section .active svg {
  transform: rotateZ(90deg);
}

/* ====== 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(50% - 20px);
  margin: 0 10px 35px;
  position: relative;
}
.single-resource .external_link {
  padding-top: 15px;
  display: block;
  font-weight: 700;
}

.single-resource .external_link::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

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: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-top: 30px;
  margin: 0;
  vertical-align: middle;
  text-transform: capitalize;
}

section.resources-boxes
  .resources-boxes-wrapper
  .flexi-resource-links
  .single-resource
  .single-resource-header
  h4
  span {
  display: inline-block;
  font-size: 2.063rem;
  line-height: 27px;
  margin-right: 15px;
}

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;
  display: none;
}

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

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 {
  width: 20px;
  position: relative;
  top: 3px;
  right: 8px;
}

/* ====== 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
  .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;
}

.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;
}

.multipurpose-boxes .box-link-wrapper
{
  font-size: 0;
}
/*  ===== 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;
}

.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;
}

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

section.home-intro.full-width-section .intro-box-right,
section.home-intro.full-width-section .intro-content,
section.form-section.full-width-section .left-col,
section.footer-cta.full-width-section .col-6.text-wrap,
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,
.common-intro.full-width-section .col-6 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

section.form-section.full-width-section .left-col{
  max-width: unset;
}

section.form-section.full-width-section .left-col.form-wrap .subcol{
  max-width: 1000px;
    margin: 0 auto;
}

section.amenities-section.full-width-section .amnety-list{
  margin: 0 auto;
    text-align: center;
}

.contact-intro.full-width-section .col-6{
  padding-top: 0;
}
.contact-intro.intro-type-1.full-width-section .address-wrap .contact-property-name{
margin: 0 auto;
}
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
  ul
  li {
  list-style: inside;
}

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

/* //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;
}

/*==== sliding floorplan after Home Hero ===== */
.home-slider-floorplan + section {
  margin-top: 20px;
}

.home-slider-floorplan + section.home-intro{
  padding: 0;
}

.home-slider-floorplan-container .slick-track {
  display: flex;
}

.home-slider-floorplan-container .slick-slide {
  object-fit: cover;
  height: inherit;
  /* max-width: 26.8vw; */
  overflow: hidden;
  position: relative;
  /* -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18); */
  margin-bottom: 20px;
}

.home-slider-floorplan-container .slick-slide .read-other {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 9;
  left: 0;
  top: 0;
}

.home-slider-floorplan-container .slick-slide:hover .slide-img {
  transform: scale(1.07, 1.07);
  -webkit-transition: -webkit-transform cubic-bezier(0.2, 0, 0.2, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.2, 0, 0.2, 1) 0.5s;
  transition: transform cubic-bezier(0.2, 0, 0.2, 1) 0.5s;
  transition: transform cubic-bezier(0.2, 0, 0.2, 1) 0.5s,
    -webkit-transform cubic-bezier(0.2, 0, 0.2, 1) 0.5s;
}

.home-slider-floorplan-container .slick-slide:first-child {
  margin-left: 0px;
}

.home-slider-floorplan-container .slick-slide .slide-img {
  object-fit: cover;
  height: 100%;
  object-position: center;
  width: 100%;
}

.home-slider-floorplan-container .slick-slide .slide-bg {
  height: 230px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-slider-floorplan-container .slide-content-box .slide-content {
  padding: 10px;
}

.home-slider-floorplan-container .videoPlayContainer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}

.home-slider-floorplan-container .video-ply-container .video-ply .ply-btn-svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  stroke: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px 0px inset rgb(0 0 0 / 30%);
}

.home-slider-floorplan-container
  .video-ply-container
  .videoPlay
  .ply-btn-svg:hover {
  box-shadow: none;
}

.home-slider-floorplan-container .videoPlay svg {
  position: relative;
  width: 60px;
  height: 60px;
  top: 0px;
  left: 0px;
  fill: #fff;
  box-shadow: 0 0 12px 0px inset rgb(0 0 0 / 80%);
  border-radius: 50%;
}

/* .home-slider-floorplan-container .slick-slide .slide-bg:after {
  content: "";
  display: block;
  background: url(/assets/images/headerGradientCompressed.png) top repeat-x;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 2;
  background-color: rgb(0 0 0 / 23%);
} */

.home-slider-floorplan-container .floorplan-price-box {
  padding: 8px 0px;
  position: relative;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  /* position: absolute; */
  bottom: 0px;
  /* left: 20px; */
  z-index: 9;
}

.home-slider-floorplan-container .slide-flex-wrapper {
  position: relative;
  bottom: 0px;
  z-index: 9;
  width: 100%;
}

.home-slider-floorplan-container .floorplan-price-box p {
  margin-bottom: 0px;
  font-size: 1.2rem;
  font-weight: 600;
}

.home-slider-floorplan-container .floorplan-price-box p span.per-month-label {
  font-size: 0.8rem;
}

.home-slider-floorplan-container
  .floorplan-availability
  .availability-dot::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 4px);
  height: 8px;
  width: 8px;
  left: 0px;
  border-radius: 50%;
  top: 2px;
}

.home-slider-floorplan-container
  .floorplan-availability
  .availability-dot.available {
  padding-left: 15px;
}

.home-slider-floorplan-container
  .floorplan-availability
  .availability-dot.available::before {
  background-color: #4ea73e;
  display: block;
}

.home-slider-floorplan-container .floorplan-availability {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
}

.home-slider-floorplan-container
  .floorplan-info-box
  .floorplan-availability
  .availability-dot {
  position: relative;
  margin-bottom: 0px;
}

.home-slider-floorplan-container .floorplan-info-box .floorplan-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: capitalize;
  font-weight: 600;
  width: 100%;
  margin: 5px 0;
}

.home-slider-floorplan-container .floorplan-info-box .floorplan-stats {
  margin-top: 3px;
  display: flex;
  flex-direction: row;
}

.home-slider-floorplan-container
  .floorplan-info-box
  .floorplan-stats
  .stat-value {
  position: relative;
  padding-right: 12px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding-top: 3px;
  padding-bottom: 5px;
}

.home-slider-floorplan-container
  .floorplan-info-box
  .floorplan-stats
  .stat-value
  + .stat-value:before {
  content: "";
  position: absolute;
  left: -3px;
  top: 5px;
  height: 14px;
  display: block;
  border-left: 2px solid #ababab;
}

.home-slider-floorplan-container
  .floorplan-info-box
  .floorplan-stats
  .stat-value
  + .stat-value:before {
  border-color: #2a4c5b;
}

.home-slider-floorplan-container
  .floorplan-info-box
  .floorplan-stats
  .stat-value
  + .stat-value {
  padding-left: 12px;
}

.home-slider-floorplan-container .slick-dots li button {
  color: #c6c6c6;
  background: #c6c6c6;
  opacity: 0.5;
}

.home-slider-floorplan-container .slick-dots li.slick-active button {
  opacity: 1;
}

/*==== End sliding floorplan after Home Hero ===== */

.floorplan-filter{
  margin-top: 50px;
}

/* ====== Responsive styles ===== */
@media screen and (min-width: 768px) {
  .mobile-ctas {
    display: none;
  }
}

@media screen and (max-width: 1675px) {
  html {
    font-size: 100%;
  }
  .amp-slide_in {
    width: calc(100vw - 120px);
}
}

@media screen and (max-width: 1440px) {
  section.resident-sections h2.resident-section-title{
    font-size: 2rem;
  }

  header .menu-trigger{
    padding-left: 55px;
  }
}

@media screen and (max-width: 1280px) {
  /* floorplan page filter css */
  .floorplan-filters .more-flp-filters div h2 {
    width: 100%;
    margin-bottom: 20px;
  }
  section.neighborhood .nbp-filter-options {
    display: none;
  }
  section.neighborhood .nbp-fliter-dropdown {
    display: flex;
  }
  .form-section .left-col.form-wrap .subcol{
    padding: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .floorplan-filters a.flp-filters-trigger{
    right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .footer-logo-wrapper.footer-left {
    width: 100%;
  }
  .footer-right {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .footer .container .footer-menu {
    margin-bottom: 20px;
  }
  .floorplan-filters .more-flp-filters div select {
    margin: 10px;
  }
  .floorplan-filters .more-flp-filters div span.sf-range-values-seperator {
    display: none;
  }
  .floorplan-filters.active {
    height: 370px;
  }
  /* header .logo-section {
    flex-grow: 1;
  } */
  .gallery-tabs ul.gallery-tabs-nav li a {
    margin: 0 20px;
  }
  .swifty-gallery-mobile-tabs-dropdown {
    display: flex;
  }
  section.gallery-section .gallery-tabs ul.gallery-tabs-nav {
    display: none;
  }
  section.common-intro .left-col,
  section.common-intro .right-col,
  section.home-intro .col-6
  {
    width: 100%;
  }
  /* section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .box-img,
  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .mp-box-content
  {
    width: 100%;
  } */
  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item{
    flex-wrap: wrap;
  }

  .intro-type-1 .left-col{
    order: 2;
  }

  .header .main-menu-wrapper, .header .header-cta{
    width: calc(60% - 100px);
  }

  .formmangr-col, section.form-section .form-wrap .subcol .formmangr-col.field-type-comment{
    width: 100%;
  }
  
}

@media screen and (min-width: 993px){
  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .mp-box-content{
    top: 0;
    transform: none;
    width: 50%;
    left: 0;
    order: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  header .logo-section a.logo {
    justify-content: flex-end;
  }
  body {
    padding: 0;
  }
  header {
    width: 100%;
  }
  header .logo-section {
    text-align: right;
    /* padding-right: 15px; */
  }
  .main-menu-left {
    width: 100%;
    padding: 20px;
  }
  .main-menu-panel {
    width: 100%;
  }

  .main-menu-right{
    display: none;
  }

  .header-cta{
    display: none !important;
  }

  .footer-logo-wrapper.footer-left {
    margin-bottom: 40px;
  }

  .footer-logo-wrapper.footer-left,
  .footer-right {
    width: 100%;
    justify-content: center;
  }
  .home-intro .home-intro-slider-wrapper,
  section.home-intro .intro-box-right {
    width: 100%;
  }
  section.home-intro .intro-box-right {
    padding: 50px 20px;
  }
  section.multipurpose-boxes .cta-columns-wrap {
    flex-flow: wrap;
  }
  section.multipurpose-boxes .cta-columns-wrap .small-img-item {
    width: 100%;
  }
  .tabs-block .right-col {
    display: none;
  }
  .tabs-block .col-6.left-col {
    width: 100%;
  }
  .home-floorplans .home-flp-slider-outer.col-6,
  .home-floorplans .home-flp-content-outer.col-6 {
    width: 100%;
  }
  section.home-floorplans .slick-slide .floorplan-slide-details {
    padding-bottom: 0px;
  }
  section.home-floorplans .home-flp-content-outer {
    padding-top: 10px;
  }
  .flp-images, .flp-sldr-wrapper {
    width: 100%;
    padding: 0;
}
  .home-gallery .text-content-wrapper {
    padding: 0 20px;
  }
  .form-section .right-col,
  .form-section .left-col {
    width: 100%;
  }
  
  .form-section .formmangr-col {
    width: 100%;
  }
  .form-section .left-col.form-wrap .subcol {
    padding: 60px 10px;
  }
  section.home-floorplans .slick-slide .floorplan-slide-img img {
    width: 90%;
    margin: 0 auto;
  }
  .flp-slide-in-trigger{
    margin: 0;
  }
  .home-flp-content-outer {
    padding: 80px 0px;
  }
  section.tabs-block .tab-content-wrap {
    padding: 40px 20px;
  }
  .community-amenities .left-col {
    order: 0;
  }
  .amenities-section .left-col,
  .amenities-section .right-col {
    width: 100%;
  }
  .amenities-section .right-col .it-section {
    padding: 60px 20px;
  }
  section.floorplans-listing .single-floorplan {
    width: 50%;
  }
  /* tour common css */
  .type-grid .single-virtual-tour {
    width: calc(50% - 30px);
  }
  .contact-intro .left-col,
  .contact-intro .right-col{
    width: 100%;
  }
 /*  blog common css */
 .listing-container .layout-grid {
  grid-template-columns: repeat(2,1fr);
  }

  .amp-slide_in{
    width: 100%;
  }

  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item .box-img{
    position: absolute;
    width: 100%;
  }
  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item{
    display: block;
  }
  section.multipurpose-boxes .cta-columns-wrap.twoCtaCol .small-img-item{
    width: 100%;
  }

  .attribution{
    text-align: center;
  }

  .tabs-block .intro-heading.col{
    text-align: center;
  }

  .tabs-block .intro-heading.col ul{
    text-align: left;
  }

  ul.policy-nav{
    width: 100%;
    margin-top: 20px;
  }
  section.multipurpose-boxes .cta-columns-wrap.singleCtaCol .small-img-item{
    padding: 40px 25px;
  }

  section.home-floorplans .col.flp-slider{
    padding-right: 0px;
  }

  section.hero-banner h2.hero-subtitle{
    font-size: 2rem;
  }
  section.hero-banner .slide-flex-wrapper .container .slide-content h1.hero-title, section.hero-banner .video-content h1.hero-title{
    font-size: 4rem;
  }

  section.home-floorplans .col.flp-slider-tab .floorplans-text{
    padding-left: 0;
    padding-right: 0;
    order: 2;
  }

  section.home-floorplans .filter .home-flp-desktop-filters{
    margin-top: 50px;
  }

  section.map-wrapper{
    height: 55vw;
  }

  section.resident-sections h2.resident-section-title::after{
    left: 0%;
  }

  section.form-section .section-title{
    text-align: center;
  }
  
}

@media screen and (max-width: 767px) {
  section.inner-hero h1{
    font-size: 3.5rem;
    padding: 0;
  }

  h2.section-title {
    font-size: 2.3rem;
  }
  
  header .menu-section {
    width: 150px;
  }

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

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

  header .menu-trigger {
    top: 0px;
    right: 0px;
  }
  footer.footer {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .footer-social.social-bar,
  .footer-address {
    width: 100%;
    text-align: center;
  }
  .footer-logo-wrapper.footer-left {
    margin-bottom: 10px;
  }
  .footer .container .footer-menu {
    margin-bottom: 20px;
  }
  .footer .contact,
  .footer .address {
    border: none;
  }

  .footer-address {
    flex-direction: column;
  }

  .footer .contact a,
  .footer .address a {
    flex-direction: column;
    text-align: center;
  }

  .copyright-area {
    text-align: center;
    margin-right: 0px;
  }
  .property-icons {
    margin-right: auto;
    margin-top: 20px;
  }
  
  /* floorplan filter css */

  section.home-floorplans .slick-slide .floorplan-slide-details{
    padding-left: 15px;
        padding-right: 15px;
  }

  .floorplan-filters h2 {
    display: none;
  }

  .floorplan-filters .more-flp-filters div h2 {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
  .floorplan-filters .more-flp-filters div {
    border-right: 0;
    justify-content: space-around;
    padding: 5px;
  }
  .floorplan-filters .more-flp-filters {
    flex-flow: column;
    padding-top: 20px;
  }
  .floorplan-filters {
    height: auto;
  }
  .floorplan-filters.active {
    height: 500px;
  }
  .floorplan-filters select.flp-bedrooms {
    width: 100%;
    margin-left: 0;
  }
  .floorplan-filters a.flp-filters-trigger {
    display: block;
    position: relative;
    margin: 0 auto 30px;
    right: 0;
  }
  .floorplan-filter{
    margin-top: 50px;
  }
  .floorplans-slick .slick-prev {
    left: 10px;
  }
  body button.slick-next {
    right: 10px;
  }
  section.multipurpose-boxes .cta-columns-wrap .small-img-item {
    height: 60vw;
  }
  section.multipurpose-boxes .cta-columns-wrap .small-img-item .mp-box-content {
    padding: 15px;
  }
  section.floorplans-listing .single-floorplan {
    width: 100%;
  }
  section.floorplans-listing .single-floorplan .flp-img {
    width: 100%;
    max-width: 100%;
  }
  /* tour common css */
  .vt_list-grid-toggle {
    display: none;
  }
  .single-virtual-tour,
  .type-grid .single-virtual-tour {
    width: 100%;
    margin: 0 0 40px;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    padding: 20px;
  }
  .single-virtual-tour .vt_img {
    width: 100%;
  }
  .vt-flp-info {
    width: 100%;
    padding: 20px 0 0;
  }
  .virtual-tour-btns {
    width: 100%;
    justify-content: center;
    flex-flow: wrap;
  }
  .attached-flp-info,
  .vt-flp-info h2 {
    max-width: 100%;
    text-align: center;
  }
  .contact-page-logo {
    width: 100%;
  }
  .contact-page-logo img{
    max-width: 200px;
  }
  .contact-page-desc {
    width: 100%;
    padding-left: 0px;
  }
  section.contact-intro .subcol {
    padding: 25px 20px;}
    section.resident-sections .single-resident-section{
      width: 100%;
    }
    section.resources-boxes .resources-boxes-wrapper .flexi-resource-links .single-resource{
      width:100%;
    }
    /*  blog common css */
  .listing-container .layout-grid {
    grid-template-columns: repeat(1,1fr);
    }
    section.inner-hero .inner-hero-text{
      max-height: fit-content;
    }

    section.resources-section .fixed-links{
      flex-direction: column;
    }

    section.resources-section .fixed-links a.fixed-resource-link{
      width: 100%;
    }
    .intro-type-2 h2, .intro-type-1 h2{
      margin-bottom: 50px;
    }
    .flp-slide-in-trigger{
      margin-bottom: 0;
    }

    section.multipurpose-boxes .cta-columns-wrap .small-img-item,
    section.multipurpose-boxes .cta-columns-wrap.twoCtaCol .small-img-item
    {
      height: auto;
    }

    section.multipurpose-boxes .cta-columns-wrap .small-img-item .mp-box-content{
      width: 100%;
    }

    

    section.resources-section .fixed-links a.fixed-resource-link{
      margin: 25px 0px;
    }

    section.home-floorplans .slick-slide .floorplan-slide-details{
      flex-direction: column;
    }

    section.home-floorplans .floorplan-slide-details .bed-bath{
      padding-left: 0px;
    }
    section.home-floorplans .floorplan-slide-details h2{
      padding: 0px;
    }
    .home-floorplans .floorplan-slide-details .btn{
      margin-left: 0;
    }

    section.home-floorplans .floorplan-slide-details h2::after, section.home-floorplans .floorplan-slide-details h2::before{
      display: none;
    }

    section.home-floorplans .floorplan-slide-details .bed-bath span{
      text-align: center;
    }
    
}
