p {
  text-align: justify !important;
}

@keyframes heroTextFade {
  0% {
    top: 35px;
    opacity: 0;
  }
  10% {
    top: 35px;
    opacity: 0;
  }
  20.33% {
    top: 0px;
    opacity: 1;
  }
  33.33% { /* 1s */
    top: 0px;
    opacity: 1;
  }
  50% { /* .5s */
    top: 0px;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
.cs-container .heading.g-1 span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
  font-size: 64px;
}
.cs-container .heading.g-1 span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
  position: relative;
  top: 2px;
}
.cs-container .heading.g-1 h1 {
  line-height: 1.3;
  font-size: 20px;
  font-weight: 400;
  color: #6fa776;
  margin-bottom: 30px;
}
.cs-container .heading.g-1 a {
  color: #4e4e4e;
}
.cs-container .heading.g-1 a:hover {
  text-decoration: underline;
}

section.hero.home {
  height: calc(100vh - 122px);
  position: relative;
  overflow: hidden;
}
section.hero.home .wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}
section.hero.home .wrapper .cs-container {
  position: relative;
  height: 100%;
  transition: all 0.5s ease 0.05s;
  z-index: 3;
  display: grid;
  place-content: center left;
}
section.hero.home .wrapper .cs-container h1 {
  font-size: 119px;
  font-weight: 600;
  color: #fff;
  display: flex !important;
  flex-direction: column !important;
  gap: 4.5px;
  margin-bottom: 15px !important;
  max-width: 809px;
  position: relative !important;
}
section.hero.home .wrapper .cs-container h1 div {
  position: relative;
}
section.hero.home .wrapper .cs-container h1 .bottom {
  position: relative;
  display: block;
  height: 119px;
  width: 100%;
  /* Animation for word-1: Rapid Scale-Down and Fade-Out */
  /* Animation for word-2: Delayed, Eased Scale-Up and Fade-In */
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1,
section.hero.home .wrapper .cs-container h1 .bottom .word-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char,
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char {
  display: inline-block;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  /* Adjusted staggered delays for 0.5s total duration */
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(1),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(1) {
  animation-delay: 0s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(2),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(2) {
  animation-delay: 0.0625s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(3),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(3) {
  animation-delay: 0.125s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(4),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(4) {
  animation-delay: 0.1875s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(5),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(5) {
  animation-delay: 0.25s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(6),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(6) {
  animation-delay: 0.3125s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(7),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(7) {
  animation-delay: 0.375s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(8),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(8) {
  animation-delay: 0.4375s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char:nth-child(9),
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char:nth-child(9) {
  animation-delay: 0.4375s;
}
@keyframes scale-down-and-vanish {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.1);
    opacity: 1;
  }
  55% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes scale-up-and-appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  35% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 1;
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 {
  opacity: 1;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1 .char {
  opacity: 1;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1.animate .char {
  animation-name: scale-down-and-vanish;
  animation-duration: 0.5s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-1.animate-rev .char {
  animation-name: scale-up-and-appear;
  animation-duration: 0.5s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-2 {
  opacity: 1;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-2 .char {
  opacity: 0;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-2.animate .char {
  animation-name: scale-up-and-appear;
  animation-duration: 0.5s;
}
section.hero.home .wrapper .cs-container h1 .bottom .word-2.animate-rev .char {
  animation-name: scale-down-and-vanish;
  animation-duration: 0.5s;
}
section.hero.home .wrapper .cs-container p {
  color: #fff;
  font-size: 17.5px;
  max-width: 680px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  line-height: 1.6;
}
section.hero.home .wrapper .cs-container a {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  color: #000;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #fff;
  padding: 15px 32px;
}
section.hero.home .wrapper .swiper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
section.hero.home .wrapper .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  width: 100vw;
}
section.hero.home .wrapper .swiper .swiper-wrapper .swiper-slide img {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
section.hero.home .wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}
section.hero.home .card {
  position: absolute;
  padding: 40px 75px;
  bottom: 0;
  right: 0;
  z-index: 4;
  width: 500px;
}
section.hero.home .card h3 {
  font-weight: 400;
  font-size: 32px;
  color: #57885d;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
section.hero.home .card h3 .bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
section.hero.home .card h3 .bottom i {
  display: inline-block;
  width: 64px;
  height: 2px;
  background: #d47b2e;
  position: relative;
  top: 4px;
}
section.hero.home .card p {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fff;
}
section.hero.home .card a {
  text-transform: capitalize;
  font-weight: 300;
  color: #4e4e4e;
}
section.hero.home .card a:hover {
  text-decoration: underline;
}

section.h-card {
  display: none !important;
}

section.wwa {
  padding: 80px 0 30px 0;
}

section.about-us-group {
  display: none !important;
  background: #fff;
  padding: 80px 0;
}
section.about-us-group .cs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
section.about-us-group .cs-container .col h4 {
  font-size: 14px;
  color: #57885d;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  margin-bottom: 15px;
}
section.about-us-group .cs-container .col p {
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

section.projects {
  padding: 80px 0;
}
section.projects .cs-container .heading {
  max-width: 809px;
  margin: auto;
}
section.projects .cs-container .heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
  font-size: 64px;
}
section.projects .cs-container .heading span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
  position: relative;
  top: 2px;
}
section.projects .cs-container .heading h1 {
  line-height: 1.3;
  font-size: 20px;
  font-weight: 400;
  color: #6fa776;
  margin-bottom: 30px;
}
section.projects .cs-container .heading a {
  color: #4e4e4e;
}
section.projects .cs-container .heading a:hover {
  text-decoration: underline;
}

section.wwd {
  padding: 80px 0;
}
section.wwd .cs-container .heading {
  margin-bottom: 64px;
}
section.wwd .cs-container .heading h2 {
  font-size: 64px;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  color: #57885d;
}
section.wwd .cs-container .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
section.wwd .cs-container .content .col {
  padding-right: 40px;
}
section.wwd .cs-container .content .col .icon {
  margin-bottom: 17px;
}
section.wwd .cs-container .content .col .icon img {
  height: 150px;
  width: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
section.wwd .cs-container .content .col .texts h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
}
section.wwd .cs-container .content .col .texts p {
  line-height: 1.7;
  max-width: 320px;
}
section.wwd .cs-container .content .col .tags {
  display: none;
  gap: 1px;
}
section.wwd .cs-container .content .col .tags a {
  color: #4e4e4e;
  font-size: 12px;
  padding: 3px 8px;
  background: #f9f9f9;
}

section.wcu {
  display: none !important;
  padding: 80px 0 180px 0;
}
section.wcu .cs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
section.wcu .cs-container .left {
  position: relative;
}
section.wcu .cs-container .left img:nth-child(1) {
  width: 270px;
  height: auto;
  position: absolute;
  right: 80px;
  top: 0;
  z-index: 1;
}
section.wcu .cs-container .left img:nth-child(2) {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  right: 205px;
  top: 170px;
  z-index: 2;
}
section.wcu .cs-container .right .heading {
  margin-bottom: 30px;
}
section.wcu .cs-container .right .heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}
section.wcu .cs-container .right .heading span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
}
section.wcu .cs-container .right .heading h2 {
  font-size: 64px;
  font-weight: 400;
  color: #57885d;
}
section.wcu .cs-container .right .content p {
  margin-bottom: 30px;
  max-width: 400px;
  margin-bottom: 30px;
  line-height: 1.7;
}
section.wcu .cs-container .right .content a {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  background: #57885d;
  color: #fff;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 13px 30px;
}

section.services-breaker {
  padding: 120px 0;
  background: #57885d;
  display: none;
}
section.services-breaker .cs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #f9f9f9;
}
section.services-breaker .cs-container .heading {
  margin-bottom: 30px;
}
section.services-breaker .cs-container .heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
}
section.services-breaker .cs-container .heading span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
}
section.services-breaker .cs-container .heading h1 {
  font-size: 64px;
  font-weight: 400;
}
section.services-breaker .cs-container .right {
  padding-left: 40px;
}

section.stats {
  display: none !important;
}
section.stats .cs-container.top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  top: 120px;
}
section.stats .cs-container.top .left {
  justify-self: left;
  max-width: 370px;
}
section.stats .cs-container.top .left h2 {
  color: #57885d;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1;
}
section.stats .cs-container.top .left p {
  margin-bottom: 50px;
}
section.stats .cs-container.top .left span {
  font-size: 24px;
  font-weight: 400;
  display: block;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #4e4e4e;
}
section.stats .cs-container.top .right {
  justify-self: right;
  position: relative;
  top: 200px;
  max-width: 350px;
  margin-right: 40px;
}
section.stats .cs-container.top .right .stat {
  padding: 20px 0 30px 0;
  border-bottom: 0.5px solid #4e4e4e;
}
section.stats .cs-container.top .right .stat:nth-child(3) {
  border: unset;
}
section.stats .cs-container.top .right .stat h2 {
  color: #57885d;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1;
}
section.stats .cs-container.top .right .stat h2:nth-child(1) {
  position: relative;
  left: -10px;
}
section.stats img {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
}

section.safety {
  display: none !important;
  padding: 80px 0 200px 0;
}
section.safety .cs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
section.safety .cs-container .left {
  position: relative;
}
section.safety .cs-container .left img:nth-child(1) {
  width: 270px;
  height: auto;
  position: absolute;
  right: 80px;
  top: 0;
  z-index: 1;
}
section.safety .cs-container .left img:nth-child(2) {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  right: 205px;
  top: 170px;
  z-index: 2;
}
section.safety .cs-container .right {
  max-width: 400px;
}
section.safety .cs-container .right .heading {
  margin-bottom: 30px;
}
section.safety .cs-container .right .heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}
section.safety .cs-container .right .heading span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
}
section.safety .cs-container .right .heading h2 {
  font-size: 64px;
  font-weight: 400;
  color: #57885d;
}
section.safety .cs-container .right .content p {
  margin-bottom: 30px;
  max-width: 400px;
  margin-bottom: 30px;
  line-height: 1.7;
}
section.safety .cs-container .right .content .links {
  display: flex;
  gap: 14px;
}
section.safety .cs-container .right .content .links a {
  display: inline-block;
  color: #000;
  font-weight: 500;
  transition: all 0.25s ease;
  font-size: 12px;
}
section.safety .cs-container .right .content .links a:hover {
  color: #d47b2e;
}
section.safety .cs-container .right .content .links a:nth-child(1) {
  padding-right: 14px;
  border-right: 0.5px solid #4e4e4e;
}

section.banner.breaker-2 {
  display: none !important;
  padding: 220px 0;
}
section.banner.breaker-2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
section.banner.breaker-2 .cs-container h1 {
  font-size: 120px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

section.blog {
  padding: 80px 0;
}
section.blog .cs-container {
  display: grid;
  grid-template-columns: 30% 70%;
}
section.blog .cs-container .heading {
  padding-right: 30px;
}
section.blog .cs-container .heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
}
section.blog .cs-container .heading span i {
  width: 64px;
  height: 2px;
  background: #d47b2e;
}
section.blog .cs-container .heading h2 {
  font-size: 64px;
  font-weight: 400;
  color: #57885d;
}
section.blog .cs-container .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
section.blog .cs-container .right .post .img-wrapper {
  margin-bottom: 20px;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
section.blog .cs-container .right .post .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transform: scale(1);
  transition: all 0.5s ease;
}
section.blog .cs-container .right .post .txt-wrapper .date {
  display: block;
  margin-bottom: 5px;
  color: #4e4e4e;
  transition: all 0.25s ease;
}
section.blog .cs-container .right .post .txt-wrapper .title {
  color: #000;
  transition: all 0.3s ease;
}
section.blog .cs-container .right .post .txt-wrapper .title:hover {
  color: #57885d;
}
section.blog .cs-container .right .post.active .img-wrapper img {
  transform: scale(1.075);
}
section.blog .cs-container .right .post.active .txt-wrapper .date {
  color: #000;
}

section.featured-posts {
  padding: 56px 0;
  background: #000;
  color: #fff;
}
section.featured-posts .cs-container {
  display: grid;
  grid-template-columns: 30% 70%;
}
section.featured-posts .cs-container p {
  color: #fff !important;
}
section.featured-posts .cs-container .left {
  padding-right: 35px;
}
section.featured-posts .cs-container .left h2 {
  margin-bottom: 14px;
  color: #6fa776;
}
section.featured-posts .cs-container .right .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
section.featured-posts .cs-container .right .wrapper .col {
  border-radius: 0.75rem;
  border: 3.5px solid #57885d;
  overflow: hidden;
}
section.featured-posts .cs-container .right .wrapper .col .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section.featured-posts .cs-container .right .wrapper .col .texts {
  padding: 1rem 0.75rem;
}
section.featured-posts .cs-container .right .wrapper .col .texts a.title {
  display: block;
  color: #fff;
}
section.featured-posts .cs-container .right .wrapper .col .texts .excerpt {
  font-weight: 300;
  font-size: 14px !important;
  letter-spacing: 0.2px;
  display: block;
  margin-bottom: 24px;
}
section.featured-posts .cs-container .right .wrapper .col .texts .r-date {
  display: block;
  font-size: 13px;
  margin-bottom: 7px;
}
section.featured-posts .cs-container .right .wrapper .col .texts .read-more {
  font-weight: 600;
  color: hsl(128, 55%, 80%);
  transition: all 0.25s ease;
}
section.featured-posts .cs-container .right .wrapper .col .texts .read-more:hover {
  color: #55c664;
}

section.featured-properties {
  padding: 56px 0;
}
section.featured-properties .cs-container .heading {
  margin-bottom: 35px;
}
section.featured-properties .cs-container .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
section.featured-properties .cs-container .content .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 100%;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 {
  width: 100%;
  padding: 14px;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  position: relative;
}
section.featured-properties .cs-container .content .wrapper .property .row-1::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .top-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .top-div .featured {
  padding: 0.25rem 0.5rem;
  color: #fff;
  background: #5f5788;
  display: inline-block;
  border-radius: 0.25rem;
  font-weight: 400;
  margin-bottom: 14px;
  font-size: 14px;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .top-div .status {
  padding: 0.25rem 0.5rem;
  color: #fff;
  display: inline-block;
  border-radius: 0.25rem;
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 14px;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .top-div .status.for-sale {
  background: #d47b2e;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .top-div .status.sold {
  background: #464746;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .bottom-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .bottom-div .price {
  font-size: 20px;
  font-weight: 600;
  margin: unset;
  visibility: hidden;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .bottom-div .icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
section.featured-properties .cs-container .content .wrapper .property .row-1 .bottom-div .icons .expand-icon, section.featured-properties .cs-container .content .wrapper .property .row-1 .bottom-div .icons .love-icon {
  border-radius: 2.5px;
  height: 25px;
  width: 25px;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-content: center;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 {
  padding: 35px 24px;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}
section.featured-properties .cs-container .content .wrapper .property .row-2.active {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 10px;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-1 {
  margin-bottom: 0.75rem;
  display: none;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-1 .title {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 17px;
  color: #57885d;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-1 .location {
  font-size: 0.75rem;
  color: #32373c;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block {
  font-size: 16px;
  font-weight: 500px;
  color: #464746;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .b-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .b-child .image {
  width: 35px !important;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .b-child .p-size {
  color: #000;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .b-child .p-size .figure {
  font-size: 17.5px;
  font-weight: 500;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .b-child .p-size .unit {
  color: #464746;
  font-size: 14px;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .p-size-block .p-type {
  font-size: 14px;
  color: #57885d;
  font-weight: 500;
  color: #32373c;
  margin: 6px 0 0 3px;
}
section.featured-properties .cs-container .content .wrapper .property .row-2 .rw-2 .link {
  padding: 0.6rem 1rem;
  border-radius: 4px;
  background: #57885d;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}
section.featured-properties .cs-container .content .view-more {
  padding: 0.6rem 1rem;
  border: 1.5px solid #000;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 500;
}
section.featured-properties .cs-container .content .view-more:hover {
  background: #57885d;
  border-color: #57885d;
  color: #fff;
}

#demographicsRealBlock {
  padding: 56px 0;
  background: #eff3ef;
}
#demographicsRealBlock .cs-container {
  margin: auto;
}
#demographicsRealBlock .cs-container .heading {
  text-align: center;
  margin-bottom: 35px;
}
#demographicsRealBlock .cs-container .wrapper {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 24px;
  margin: auto !important;
}
#demographicsRealBlock .cs-container .wrapper a {
  display: flex;
  place-items: end start;
  position: relative;
  height: 189px;
  width: 280px;
  transition: all 0.3s ease;
}
#demographicsRealBlock .cs-container .wrapper a:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 10px;
}
#demographicsRealBlock .cs-container .wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}
#demographicsRealBlock .cs-container .wrapper a > div {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
}
#demographicsRealBlock .cs-container .wrapper a > div h3 {
  font-size: 20px;
  font-weight: 500;
}
#demographicsRealBlock .cs-container .wrapper a > div div {
  display: none;
}/*# sourceMappingURL=home.css.map */