@charset "UTF-8";
/*
// Table of contents //

	01.	GOOGLE FONTS
	02.	BODY
	03.	CUSTOM CLASSES
	04. FORM ELEMENTS
	05.	SECTIONS
	06.	HTML TAGS
	07.	LINKS
	08.	MODAL
	09.	PAGINATION
	10. PRELOADER
	11.	TRANSITION OVERLAY
	12.	SANDWICH BUTTON
	13.	SCROLL DOWN
	14.	NAVIGATION MENU
	15.	HEADER
	16.	SOCIAL MEDIA
	17.	NAVBAR
	18.	SLIDER
	19.	PAGE HEADER
	20.	VIDEO BG
	21.	WORKS
	22.	FEATURES CONTENT
	23.	LISTING CONTENT
	24.	FULL MEDIA CONTENT
	25.	INTRODUCTION
	26. OUR TEAM
	27.	NEWS
	28.	SAY HELLO
	29.	LOGOS
	30.	FOOTER
	31.	RESPONSIVE TABLET FIXES
	32. REPSONSIVE MOBILE FIXES



*/
/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,600,800&display=swap&subset=latin-ext");

/* BODY */
* {
  outline: none !important;
}

@font-face {
  font-family: "MyFont";
  src: url("/text-font/Optima\ Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Optima";
  src: url("/text-font/OPTIMA.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Optima";
  src: url("/text-font/Optima\ Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Optima";
  src: url("/text-font/OPTIMA_B.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Optima";
  src: url("/text-font/Optima_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  color: #26282b;
  background-color: #fff6e9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Optima";
}

p {
  font-family: "Poppins", sans-serif;
}

/* HTML ELEMENT */
img {
  max-width: 100%;
}

/* LINKS */
a {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #26282b;
}

a:hover {
  text-decoration: underline;
}

/* CUSTOM CONTAINER */
.container {
  max-width: 1280px;
}

/* PAGINATION */
.pagination {
  display: flex;
}

/* NAV PILLS */
.nav-pills {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: space-evenly;
  margin-top: 20px;
}

.nav-pills-1 {
  justify-content: space-around;
}

.nav-pills .nav-item {
  display: inline-block;
  margin-right: 30px;
}

.nav-pills .nav-item:last-child {
  margin-right: 0;
}

.nav-pills .nav-item .nav-link {
  background: none;
  color: #26282b;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
}

.nav-pills .nav-item .nav-link.active {
  border-bottom: 2px solid #26282b;
}

/* HAMBURGER */
.hamburger {
  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  opacity: 1;
  position: absolute;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  width: 10px;
  top: 19px;
}

.hamburger span:nth-child(4) {
  width: 6px;
  top: 19px;
  left: 15px;
}

.hamburger.open {
  margin: 0;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: 20px;
}

.hamburger.open span:nth-child(3) {
  width: 30px;
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hamburger.open span:nth-child(4) {
  opacity: 0;
  left: 20px;
}

.hamburger:hover span:nth-child(4) {
  width: 20px;
  left: 10px;
}

/* TRANSITION OVERLAY */
.transition-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  background: #ebcfa7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}

.transition-overlay.active {
  left: 0;
}

/* PAGE LOADED */

.page-loaded .navbar .container .upper-side {
  transform: translateY(0);
}

.page-loaded .navbar .container .menu {
  opacity: 1;
}

.page-loaded .slider .slider-container {
  transform: scale(1);
  opacity: 1;
}

/* SIDE NAVIGATION */
.side-navigation {
  width: 400px;
  max-width: 100%;
  height: 100vh;
  min-height: 400px;
  position: fixed;
  left: -100%;
  top: 0;
  background: #26282b;
  z-index: 10;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.side-navigation .menu {
  display: none;
  margin-bottom: 20px;
}

.side-navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.side-navigation .menu ul li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 3px 0;
  list-style: none;
  position: relative;
}

.side-navigation .menu ul li ul {
  width: 100%;
  display: none;
  padding-left: 20px;
  margin-bottom: 10px;
}

.side-navigation .menu ul li ul li {
  display: block;
}

.side-navigation .menu ul li ul li a {
  font-size: 2vw;
}

.side-navigation .menu ul li a {
  display: inline-block;
  color: #fff;
  font-size: 3vw;
  font-weight: 600;
}

.side-navigation .menu ul li a:hover {
  color: #ebcfa7;
  text-decoration: none;
}

.side-navigation figure {
  display: block;
  margin-bottom: 30px;
}

.side-navigation figure img {
  height: 40px;
}

.side-navigation h6 {
  font-weight: 600;
  font-size: 20px;
}

.side-navigation p {
  display: block;
  margin-bottom: 30px;
}

.side-navigation p a {
  color: #fff;
}

.side-navigation.active {
  left: 0;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.navbar .container {
  flex-direction: column;
}

.navbar .container .upper-side {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  align-items: center;
  transform: translateY(-80px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.2s;
}

.navbar .container .upper-side .logo {
  margin-left: 0;
}

.navbar .container .upper-side .logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.navbar .container .upper-side .phone-email {
  margin-right: 15px;
  margin-left: auto;
  margin-top: 5px;
  text-align: right;
  color: #fff;
}

.navbar .container .upper-side .phone-email img {
  float: right;
  height: 48px;
  margin-left: 15px;
}

.navbar .container .upper-side .phone-email h4 {
  margin-bottom: -5px;
  margin-top: 3px;
  font-size: 17px;
  font-weight: 600;
  display: -webkit-box;
  line-height: 1;
}

.navbar .container .upper-side .phone-email a {
  color: white;
  text-decoration: none;
}

.navbar .container .upper-side .phone-email a:hover {
  color: blue;
}

.navbar .container .upper-side .hamburger {
  width: 30px;
  height: 21px;
  margin-right: 0;
}

.navbar .container .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.4s;
  opacity: 0;
}

.navbar .container .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  margin-top: -1px;
}

.navbar .container .menu ul li {
  margin: 0;
  margin-left: 40px;
  padding: 0;
  list-style: none;
  position: relative;
}

.navbar .container .menu ul li:hover ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .container .menu ul li ul {
  min-width: 220px;
  position: absolute;
  left: -35px;
  top: 120%;
  background: #26282b;
  margin: 0;
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar .container .menu ul li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #26282b transparent;
  position: absolute;
  left: 35px;
  top: -10px;
}

.navbar .container .menu ul li ul li {
  margin: 0;
  padding: 0 35px;
  white-space: nowrap;
}

.navbar .container .menu ul li ul li a {
  padding: 8px 0;
}

.navbar .container .menu ul li ul li a:hover {
  border-color: transparent;
}

.navbar .container .menu ul li a {
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 25px 0;
  border-top: 1px solid transparent;
}

.navbar .container .menu ul li a:hover {
  text-decoration: none;
  color: #ebcfa7;
  border-top: 1px solid #ebcfa7;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  background: #26282b;
  overflow: hidden;
}

.slider .slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(1.3);
  transition-delay: 1.25s;
  opacity: 0;
}

.slider .slider-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-size:cover;
  background-repeat: no-repeat;
}

.slider .slider-container .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #26282b;
  background: -moz-linear-gradient(161deg,
      #26282b 0%,
      #26282b 49%,
      #9f8054 100%);
  background: -webkit-linear-gradient(161deg,
      #26282b 0%,
      #26282b 49%,
      #9f8054 100%);
  background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b", endColorstr="#9f8054", GradientType=1);
  opacity: 0.65;
}

.slider .slider-container .swiper-slide .container {
  position: relative;
  z-index: 9;
  padding-left: 100px;
}

.slider .slider-container .swiper-slide .container h1 {
  font-size: 5vw;
  color: #fff;
  color: #ebcfa7;
  margin-bottom: 20px;
}

.slider .slider-container .swiper-slide .container h1 span {
  display: inline-block;
  position: relative;
}

.slider .slider-container .swiper-slide .container h1 span:before {
  content: "";
  width: 247px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 40px;
  background-size: contain;
  z-index: -1;
}

.slider .slider-container .swiper-slide .container h2 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

.slider .slider-container .swiper-slide .container button {
  height: 60px;
  line-height: 56px;
  float: left;
  color: #ffff;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  border: 2px solid #ebcfa7;
  padding: 0 40px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.slider .slider-container .swiper-slide .container button i {
  margin-left: 10px;
}

.slider .slider-container .swiper-slide .container button:hover {
  text-decoration: none;
  background: #9f8054;
  border-color: #9f8054;
  color: white;
}

.slider .slider-container .swiper-slide .container figure {
  float: left;
  margin-left: 40px;
  margin-bottom: 0;
}

.slider .slider-container .swiper-slide .container figure img {
  height: 60px;
}

.slider .slider-container .inner-elements {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.slider .slider-container .inner-elements .container {
  position: relative;
  height: 100vh;
}

.slider .slider-container .inner-elements .container .pagination {
  width: auto;
  position: absolute;
  left: auto;
  right: 15px;
  bottom: 20px;
  z-index: 4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
}

.slider .slider-container .inner-elements .container .pagination .swiper-pagination-current {
  font-size: 40px;
  font-weight: 800;
  margin-right: 5px;
}

.slider .slider-container .inner-elements .container .pagination .swiper-pagination-total {
  font-size: 20px;
  margin-left: 5px;
}

.slider .slider-container .inner-elements .container .button-prev {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: -60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.slider .slider-container .inner-elements .container .button-prev:hover {
  color: #ebcfa7;
}

.slider .slider-container .inner-elements .container .button-prev:after {
  content: "";
  width: 42px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(-100% - 20px);
  top: 5px;
}

.slider .slider-container .inner-elements .container .button-next {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: 60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.slider .slider-container .inner-elements .container .button-next:hover {
  color: #ebcfa7;
}

/* PROPERTY PLANS */
.overflow-btn {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-40%, -40%);
  display: none;
}

.floor-image:hover .overflow-btn {
  display: block;
}

.property-plans {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 75px;
  padding-top: 50px;
}

.property-plans h4 {
  display: block;
  font-size: 33px;
  margin-bottom: 15px;
  font-weight: 600;
}

.number-percent h5 {
  padding-top: 10px;
  font-size: 28px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}

.number-percent p {
  font-size: 16px;
}

.property-plans .tab-pane h6 {
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

.property-plans h3 {
  color: #9f8054;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 23px;
}

.property-plans p {
  display: block;
  margin-bottom: 10px;
}

.property-plans .btn {
  height: 60px;
  line-height: 60px;
  float: left;
  margin: 0 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-bottom: 10px;
}

.property-plans .btn i {
  margin-left: 10px;
}

.property-plans .btn:hover {
  text-decoration: none;
  scale: 1.05;
}

.property-plans table {
  display: table;
  margin-bottom: 30px;
  font-size: 15px;
}

.property-plans table tr td {
  padding: 5px 0;
}

.property-plans table tr td:first-child {
  color: #9f8054;
  width: 120px;
  font-weight: 600;
}

.tab-content {
  width: 100%;
  overflow: hidden;
  padding-left: 10px;
}

.tab-content .tab-pane img {
  height: 500px;
  width: auto;
  object-fit: contain;
}

.tab-pane {
  margin: 0;
  padding-left: 10px;
}

/* Property benefits */
.benefits-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 45px;
  padding-bottom: 55px;
}

.benefits-posts h4 {
  display: block;
  font-size: 33px;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefits-posts p {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
}

.benefits-posts .post-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.benefits-posts .post-box figure {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

.benefits-posts .post-box figure img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.benefits-posts .post-box h6 {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #9f8054;
}

.benefits-posts .post-box p {
  display: block;
  margin: 0;
}

.benefits-posts .post-box span {
  width: 100%;
  display: block;
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 10px;
}

/* RECENT POSTS */
.recent-posts {
  width: 100%;
  padding: 55px 0;
  background-color: #f9ebd7;
}

.recent-posts-1 {
  width: 100%;
  padding: 55px 0;
  background-color: transparent;
}

.recent-posts video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.recent-posts h4 {
  display: block;
  font-size: 33px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.recent-posts-1 h4 {
  display: block;
  font-size: 33px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.recent-posts .post-box figure,
.recent-posts .post-box-1 figure {
  display: block;
  margin-bottom: 10px;
}

.recent-posts .post-box figure img {
  object-fit: cover;
  height: 270px;
  width: 100%;
  margin-bottom: 10px;
}

.recent-posts .post-box-1 figure img {
  object-fit: cover;
  height: 280px;
  width: 100%;
  margin-bottom: 10px;
}

.image-counter-description {
  display: grid;
  padding: 5px 0;
}

.image-counter-description .image-counter-heading h4 {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #8b4513;
}

.image-counter-description .image-counter h4 {
  text-align: left;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 600;
}

.image-counter-description .image-counter p {
  text-align: left;
  font-size: 15px;
}

.recent-posts .post-box-1 h6 {
  display: block;
  font-size: 25px;
  font-weight: 600;
}

.recent-posts .post-box-1 p {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

/* Certificates */
.certificates {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 55px 0;
}

.certificates h4 {
  display: block;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.certificates figure {
  display: block;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.certificates figure img {
  width: 100%;
  height: 555px;
  object-fit: cover;
}

/* ABOUT CONTENT */
.about-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
}

.about-content h2 {
  font-size: 4vw;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #9f8054;
}

.about-content h6 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
}

.about-content h4 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content h5 {
  font-size: 23px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #9f8054;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 18px;
}

.about-content p strong {
  font-weight: 600;
}

.about-content ul {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
}

.about-content ul li {
  margin: 0;
  padding: 4px 0;
}

.about-content .btn {
  height: 60px;
  line-height: 60px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: grey;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.about-content .btn i {
  margin-left: 10px;
}

.about-content .btn:hover {
  text-decoration: none;
  scale: 1.1;
}

/* nearby places */
.property-plans-1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-bottom: 75px;
}

.property-plans-1 .left {
  text-align: center;
}

.property-plans-1 .map {
  margin-top: 20px;
  width: 100%;
  height: 385px;
  object-fit: fill;
}

.property-plans-1 h3 {
  padding-top: 5px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 33px;
}

.property-plans-1 p {
  display: block;
  margin-bottom: 30px;
  font-size: 18px;
}

.map-images {
  width: 100%;
  height: 100%;
}

.map-images img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.property-plans-1 .btn {
  display: inline-block;
  margin: 15px auto;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.property-plans-1 .btn-1 {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 40px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-left: 40px;
}

.property-plans-1 .btn i,
.property-plans-1 .btn-1 i {
  margin-left: 10px;
}

.property-plans-1 .btn:hover,
.property-plans-1 .btn-1:hover {
  text-decoration: none;
  scale: 0.9;
}

.tab-content .tab-pane .points li {
  padding-top: 0px;
  padding: 2px 0;
  font-size: 16px;
}

/* Benefits */
.benefits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  text-align: center;
}

.benefits .col {
  border-right: 1.5px solid #aa8d6f;
  padding-top: 20px;
  padding-bottom: 20px;
}

.benefits .col:last-child {
  border-right: none;
}

.benefits b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.benefits h4 {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
}

.benefits h4 span {
  color: #9f8054;
}

.benefits h3 {
  font-weight: 600;
  margin-bottom: 50px;
}

.benefits figure {
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.benefits figure img {
  height: 70px;
  position: relative;
  z-index: 2;
}

.benefits h6 {
  font-weight: 600;
  font-size: 14px;
}

.benefits .odometer {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
  left: 0.01;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  text-align: center;
}

.benefits .count {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.benefits .extra {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transform: translateY(10px);
}

/* FACILITIES */
.facilities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
}

.facilities h4 {
  display: block;
  font-size: 35px;
  text-align: center;
}

.facilities h4 span {
  color: #9f8054;
}

.facilities small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}

.facilities small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}

.facilities figure {
  border-radius: 10px;
  width: 100%;
  float: left;
  margin: 15px 0;
  padding: 50px 30px;
  box-shadow: 0 0 20px whitesmoke;
  background-color: white;
}

.facilities figure img {
  height: 70px;
  float: left;
}

.facilities figure figcaption {
  width: calc(100% - 90px);
  float: right;
}

.facilities figure figcaption h5 {
  font-weight: 600;
  font-size: 16px;
}

.facilities figure figcaption p {
  font-size: 14px;
  opacity: 0.5;
  margin: 0;
}

/* PRESS RELEASES */
.press-relases {
  width: 100%;
  padding: 40px 0;
}

.press-relases .title {
  display: block;
  font-size: 33px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.press-relases figure {
  width: 100%;
  margin: 15px 0;
}

.press-relases figure a {
  width: 40%;
}

.press-relases figure a img {
  border-radius: 12px;
  width: 100%;
  height: 230px;
  object-fit: fill;
}

.press-relases figure figcaption {
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.press-relases figure figcaption h5 {
  display: block;
  font-size: 22px;
  margin-bottom: 15px;
}

.press-relases figure figcaption p {
  font-size: 14px;
}

.press-relases figure figcaption small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  opacity: 0.5;
}

/* CONTACT */
.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}

.contact b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.contact h4 {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.contact h4 span {
  color: #9f8054;
}

.contact address {
  display: block;
  margin-bottom: 50px;
}

.contact address strong {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.contact address p {
  display: block;
  margin: 0;
}

.contact .map {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 70px;
  background: #ebcfa7;
  position: relative;
  width: 100%;
}

.contact .map:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #ebcfa7;
  position: absolute;
  left: -50vw;
  top: 0;
}

.contact .map .pattern-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  /* left: 5%; */
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}

.contact .map .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(40px, -35px);
}

.contact .map .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 100%;
  object-fit: cover;
  height: 557px;
  border: none;
}

.contact .contact-form {
  width: 100%;
  display: block;
  padding-left: 10%;
}

.contact .contact-form h5 {
  margin-bottom: 40px;
}

.contact .contact-form #contact {
  display: block;
}

.contact .contact-form #contact .form-group {
  display: block;
  position: relative;
  margin-bottom: 35px;
}

.contact .contact-form #contact .form-group span {
  width: 100%;
  line-height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 20px;
  z-index: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.contact .contact-form #contact .form-group span.label-up {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}

.contact .contact-form #contact .form-group input[type="text"] {
  background: none;
  position: relative;
  z-index: 2;
}

.contact .contact-form #contact .form-group input:focus+span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}

.contact .contact-form #contact .form-group textarea {
  background: none;
  position: relative;
  z-index: 2;
}

.contact .contact-form #contact .form-group textarea:focus+span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}

.contact .contact-form #contact .form-group label.error {
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 13px;
}

.contact .contact-form #success,
.contact .contact-form #error {
  display: none;
  float: left;
}

.contact .contact-form #error {
  background: red;
  color: #fff;
}

.contact .contact-form #success {
  background: green;
  color: #fff;
}

.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 100%;
  height: 54px;
  border: 1px solid #130101;
  padding: 0 20px;
}

textarea {
  width: 100%;
  height: 160px;
  border: 1px solid #130101;
  padding: 15px 20px;
}

button[type="submit"] {
  height: 54px;
  border: none;
  background: #9f8054;
  color: #fff;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* 
.form-container {
  width: 100%;
  height: 100%;
}

.form-container iframe {
  width: 100%;
  height: 100vh;
} */
.crm-popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2222;
}

.crm-popup .inner-div {
  position: relative;
  width: 65%;
  margin: 2% auto;
  background: #fff;
  border-radius: 10px;
  height: 93vh;
  overflow: hidden;
}

.crm-popup .cls-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
}

.crm-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

/* FOOTER BAR */
.footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -80px;
}

.footer-bar .inner {
  text-align: center;
  background: #9f8054;
  padding: 60px 30px;
  color: #fff;
}

.footer-bar .inner figure {
  margin-bottom: 20px;
  margin-right: 30px;
}

.footer-bar .inner figure img {
  height: 70px;
}

.footer-bar .inner h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-bar .inner p {
  font-size: 16px;
  margin: 0;
}

.footer-bar .inner strong {
  font-weight: 600;
  text-decoration: underline;
}

/* FOOTER */
.footer-07 {
  background: #26282b;
  padding-top: 7rem;
}

.footer-07 a {
  color: #fff;
}

.footer-07 a:hover {
  text-decoration: none;
}

.footer-07 p {
  color: white;
}

.footer-07 .footer-heading {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-07 .footer-heading .logo {
  color: #fff;
}

.footer-07 .menu {
  margin-bottom: 30px;
}

.footer-07 .menu a {
  color: #fff;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  border: 1px solid #a3de83;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}

/* RESPONSIVE MOBILE FIXES - MINIMUM*/
@media (min-width: 767px) {
  .contact .map {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bar .inner {
    margin: 0 auto;
    width: 80%;
    padding: 15px 20px;
  }

  .image-counter-description .image-counter-heading,
  .image-counter-description .image-counter {
    border-right: 1.5px solid #1a2e35;
  }

  .image-counter-description .image-counter:last-child {
    border-right: 0px;
  }
}

/* RESPONSIVE MEDIUM LAPTOP FIXES - MINIMUM*/
@media (min-width: 991px) {
  .benefits-posts p {
    margin-bottom: 25px;
  }

  .benefits-posts .post-box figure img {
    height: 300px;
  }

  .contact .map {
    width: 100%;
  }

  .number-percent .numbers {
    margin: 30px 0;
  }

  .property-plans table {
    font-size: 18px;
  }

  .about-percent h4 {
    font-size: 35px;
  }

  .number-percent p {
    font-size: 18px;
  }

  .about-content h4 {
    font-size: 35px;
  }

  .recent-posts .post-box-1 h6 {
    margin-left: 5px;
    font-size: 21px;
  }

  .recent-posts .post-box-1 p {
    margin-left: 5px;
    font-size: 18px;
  }

  .recent-posts .post-box figure img {
    height: 450px;
    width: 100%;
  }

  .recent-posts .post-box-1 figure img {
    height: 350px;
    width: 100%;
  }

  .footer-bar .inner {
    margin: 0 auto;
    width: 60%;
    padding: 15px 15px;
  }

  .navbar .container .upper-side .hamburger {
    display: none;
  }

  .navbar .container .upper-side .hamburger span {
    display: none;
  }
}

@media (min-width: 1200px) {
  .crm-popup .inner-div {
    width: 50%;
  }

  .property-plans .tab-pane h6 {
    font-size: 25px;
  }

  .property-plans-1 .map {
    height: 435px;
  }

  .nav-pills .nav-item .nav-link {
    font-size: 20px;
  }

  .recent-posts-1 .container {
    margin-left: auto;
    margin-right: 0px;
    max-width: 1400px;
  }

  .recent-posts-1 h4 {
    text-align: start;
  }
}

@media (min-width: 1300px) {
  .crm-popup .inner-div {
    width: 45%;
  }

  .property-plans table {
    font-size: 20px;
  }

  .property-plans table tr td:first-child {
    width: 200px;
  }

  .slider .slider-container .swiper-slide .container {
    padding-top: 200px;
  }

  .recent-posts .post-box figure img {
    height: 580px;
  }

  .recent-posts .post-box-1 figure img {
    height: 380px;
  }

  .image-counter-description .image-counter-heading h4 {
    font-size: 24px;
  }

  .image-counter-description .image-counter p {
    padding-top: 5px;
    font-size: 18px;
  }

  .image-counter-description .image-counter h4 {
    font-size: 26px;
  }
}

@media(min-width:1400px) {
  .crm-popup .inner-div {
    width: 40%;
  }
}

@media(min-width:1600px) {
  .crm-popup .inner-div {
    width: 30%;
    height: 700px;
  }
}

/* RESPONSIVE MOBILE FIXES - MAXIMUM*/
@media (max-width: 767px) {
  .crm-popup .inner-div {
    width: 90%;
    max-width: 500px;
  }

  .press-relases .title {
    font-size: 30px;
  }

  .recent-posts h4 {
    font-size: 30px;
  }

  .property-plans h4 {
    font-size: 30px;
  }

  .property-plans-1 h3 {
    font-size: 28px;
    padding-top: 20px;
  }

  .recent-posts .post-box-1 h6 {
    font-size: 22px;
  }

  .recent-posts .post-box-1 p {
    font-size: 17px;
  }

  .benefits-posts .post-box h6 {
    font-size: 22px;
  }

  .benefits-posts .post-box p {
    font-size: 17px;
  }

  .benefits-posts h4 {
    font-size: 28px;
  }

  .about-content h5 {
    font-size: 22px;
  }

  .property-plans h5 {
    font-size: 22px;
  }

  .property-plans h3 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-content p {
    font-size: 16px;
  }

  .contact .map .pattern-bg {
    width: 100%;
  }

  .contact .map .holder {
    transform: translate(5px, -35px);
  }

  .contact .map .holder img {
    width: 100%;
    height: 350px;
  }

  .certificates figure {
    margin: 15px 0;
  }

  .benefits .col {
    width: 50%;
    flex-basis: auto;
    border-right: none;
  }

  .benefits .odometer {
    font-size: 20px;
  }

  .benefits .count {
    font-size: 20px;
  }

  .side-navigation {
    width: 80vw;
  }

  .tab-content .tab-pane img {
    height: 210px;
    width: auto;
    object-fit: contain;
  }

  .navbar .container .upper-side .phone-email {
    display: none;
  }

  .navbar .container .upper-side .hamburger {
    margin-left: auto;
  }

  .slider .slider-container .swiper-slide .container {
    padding-left: 15px;
    padding-right: 40px;
  }

  .slider .slider-container .swiper-slide .container figure {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .apartment h2 {
    font-size: 9vw;
  }

  .apartment figure {
    margin: 15px 0;
  }

  .apartment h4 {
    margin-top: 30px;
  }

  .about-content h2 {
    font-size: 10vw;
  }

  .side-navigation .menu ul li a {
    font-size: 5vw;
  }

  .side-navigation .menu ul li ul li a {
    font-size: 4vw;
  }
}

/* RESPONSIVE TABLET FIXES - MAXIMUM*/
@media (max-width: 991px) {
  .benefits-posts {
    padding-bottom: 40px;
  }

  .benefits-posts .post-box {
    margin: 25px 0;
  }

  .contact {
    padding: 40px 0;
  }

  .contact address p a {
    display: block;
  }

  .contact .contact-form {
    padding-left: 0;
    margin-top: 50px;
  }

  .benefits {
    padding: 15px 0;
  }

  .benefits .odometer {
    font-size: 25px;
  }

  .benefits .count {
    font-size: 25px;
  }

  .certificates {
    padding: 40px 0;
  }

  .benefits .extra {
    transform: translateY(5px);
  }

  .tab-content .tab-pane img {
    height: 380px;
  }

  .side-navigation .menu {
    display: block;
  }

  .navbar .container .menu {
    display: none;
  }

  .about-content {
    padding: 20px 0;
  }

  .press-relases {
    padding: 50px 0;
  }

  .apartment {
    padding: 80px 0;
  }

  .facilities {
    padding: 10px 0;
  }

  .property-plans {
    padding-bottom: 40px;
  }

  .property-plans-1 {
    padding-bottom: 40px;
  }

  .property-plans .nav-pills {
    margin-top: 40px;
  }

  .property-plans-1 .nav-pills {
    margin-top: 40px;
  }

  .recent-posts {
    padding: 40px 0;
  }

  .recent-posts .post-box {
    margin: 15px 0;
  }

  .footer-bar .inner {
    padding: 30px;
  }

  .footer-bar .inner .col-lg-4 {
    margin: 20px 0;
  }

  .footer-bar .inner figure {
    width: 70px;
    margin: 0 auto;
  }

  .footer-bar .inner figure img {
    height: 50px;
  }
}

/* RESPONSIVE MEDIUM LAPTOP FIXES - MAXIMUM*/
@media (max-width: 1199px) {
  .footer-bar .inner p {
    font-size: 15px;
  }

  .footer-bar .inner p br {
    display: none;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .recent-posts .post-box figure img {
    height: 350px;
  }

  .recent-posts .post-box-1 figure img {
    height: 290px;
  }
}

@media (min-width: 991px) and (max-width: 1100px) {
  .slider .slider-container .swiper-slide .container {
    padding-top: 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .slider .slider-container .swiper-slide .container {
    padding-top: 180px;
  }
}

/* WHATSAPP LOGO */
.whatsapp-logo {
  z-index: 1111;
  position: fixed;
  bottom: 20px;
  right: 25px;
  height: 50px;
  width: 50px;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #d7926b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-logo {
  z-index: 1111;
  position: fixed;
  bottom: 90px;
  right: 25px;
  height: 50px;
  width: 50px;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #d7926b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.en-btn {
  z-index: 1111;
  position: fixed;
  bottom: 200px;
  rotate: 270deg;
  right: -15px;
  height: auto;
  width: auto;
  padding: 10px 10px;
  border-radius: 10px;
  place-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #d7926b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-logo i {
  font-size: 30px;
}

.phone-logo i {
  font-size: 25px;
}

.phone-logo i {
  rotate: 100deg;
}

.whatsapp-logo a,
.phone-logo a {
  color: white;
}

.en-btn button {
  background-color: transparent;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
}

.whatsapp-logo a:hover,
.phone-logo a:hover {
  color: red;
}

@media (max-width: 767px) {
  .en-btn {
    display: none;
  }
}

.swiper-button-prevv,
.swiper-button-nextt {
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  top: auto;
  z-index: 10;
  color: white;
  background-color: blue;
  padding: 5px 10px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-nextt {
  right: 10px;
}

.swiper-button-prevv {
  left: auto;
  right: 70px;
}

.swiper-button-prevv.swiper-button-disabled,
.swiper-button-nextt.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}