@charset "UTF-8";

:root {
  --primary-color: #050087;
  --secondary-color: #ff0050;
  --font-color: #363636;
  --bg-color: #fff;
  --heading-color: #060606;
  --border-radius: 8px;
  --border-radius-full: 30px;
  --border-color-light: #eee;
  --iframe-filter: grayscale(0%);
  --bg-grey: #f4f4f4;
  --bg-light: #fafafb;
  --disable-color: #d8d6d6;
  --box-shadow: 0 1rem 3rem rgb(0 0 0 / 12%);
  --layer: rgb(19 25 23 / 58%);
  --footer-layer: rgb(19 25 23 / 78%);
  --bg-lightgrey: #F8F9FA;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: Jost;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--font-color);
}

body a,
button,
.btn {
  cursor: pointer !important;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

a,
a:hover,
button,
button:hover {
  text-decoration: none;
  transition: .5s all;
  -moz-transition: .5s all;
}

button,
input,
select,
label,
li,
span {
  -webkit-appearance: none;
  outline: none;
}

a,
a:hover,
button,
button:hover {
  text-decoration: none;
  transition: .5s all;
  -moz-transition: .5s all;
}

iframe {
  border: none;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: Jost;
  font-weight: 500;
  text-transform: capitalize;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--font-color);
  letter-spacing: .2px;
}

li {
  list-style-type: none;
}

.radius-image {
  border-radius: var(--border-radius);
}

.radius-image-full {
  border-radius: var(--border-radius-full);
}

/* container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 850px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

/* Movetop */
#movetop {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 9;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  background: #28a77c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  padding: 0;
}

#movetop:hover {
  opacity: .8;
}

/* header */
.main-nav,
.dropdown-menu,
.login-register,
.btn.btn-create-listing,
.logged-in-nav,
.btn-phone-number {
  font-family: Jost;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  text-transform: none;
}

.header-v4 {
  background-color: #ffffff;
  border-bottom: 1px solid #dce0e0;
}

.header-v4 a.nav-link:hover,
.header-v4 a.nav-link:active {
  color: #28a77c;
  background-color: rgba(40, 167, 124, 0.07);
}

.navbar.d-flex.align-items-center {
  border-bottom: 1px solid #dce0e0;
  padding: 2px 0;
}

.header-v4 a.nav-link i {
  font-size: 12px;
}

.header-v4 a.nav-link {
  color: #000000;
  font-weight: 500;
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.logo img {
  width: 80px;
  height: auto;
}

h5.title-logo {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

h5.title-logo span {
  display: block;
  font-size: 15px;
}

.header-main-wrap .btn-create-listing {
  color: #000000;
  border: 1px solid #000000;
  background-color: #ffffff;
  line-height: 28px;
}

.header-main-wrap .btn-create-listing:hover,
.header-main-wrap .btn-create-listing:active {
  color: rgba(255, 255, 255, 0.99);
  border: 1px solid #28a77c;
  background-color: rgba(40, 167, 124, 1);
}

.header-v4 a {
  color: #004274;
}

.header-v4 a:hover,
.header-v4 a:active {
  color: #00aeff;
}

.navbar-expand-xl .navbar-collapse {
  justify-content: center;
}

@media (max-width: 1220px) {
  .navbar.d-flex.align-items-center {
    flex-wrap: nowrap;
  }

  .header-v4 a.nav-link {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}

@media (min-width: 1199px) {
  .mobile-rightside {
    display: none;
  }
}

@media (max-width: 1199px) {
  .desktop-rightside {
    display: none;
  }

  button.navbar-toggler {
    padding: 5px 8px;
  }

  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }

  .navbar-expand-xl .navbar-collapse {
    text-align: center;
  }

  .login-register.mobile-rightside {
    padding: 1em 0;
  }
}

@media (max-width: 385px) {
  .logo img {
    width: 60px;
  }

  .logo.logo-desktop.me-4 {
    margin-right: 10px !important;
  }

  h5.title-logo {
    font-size: 16px;
  }
}

/* banner */
.banner-content {
  align-items: center;
  min-height: 100vh;
}

.banner_main {
  min-height: 85vh;
  border-radius: 10px;
}

.banner1 {
  background: url(../images/slider1.jpg) center no-repeat;
  background-size: cover;
}

.banner2 {
  background: url(../images/slider2.jpg) center no-repeat;
  background-size: cover;
}

.banner3 {
  background: url(../images/slider2.jpg) center no-repeat;
  background-size: cover;
}

.bannerleft h1 {
  color: #000;
  font-size: 46px;
  line-height: 56px;
}

.search-form form {
  background-color: #fff;
  padding: 10px 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #f4f4f4;
  border-radius: 40px 40px 40px 40px;
  box-shadow: 0 20px 40px 0 rgb(0 0 0 / 10%);
  margin-right: -81px;
  z-index: 99;
}

.search-form form input {
  background-color: #f3f3f3;
  border-color: #fff;
  border-radius: 32px 32px 32px 32px;
  margin-right: 10px;
}

.search-form form input:focus {
  background-color: #f3f3f3;
}

.search-form form button {
  background-color: #28a77c;
  color: #fff;
  border-radius: 32px 32px 32px 32px;
  font-size: 16px;
  padding: 12px 40px;
}

.search-form form button:hover {
  background-color: #ff7800;
  color: #fff;
}

.bannerleft {
  z-index: 99;
}

.bannerright {
  z-index: 9;
}

/* Logo's */
.logo-content {
  text-align: center;
  margin: auto;
}

.logo-content img {
  width: 150px;
  text-align: center;
  margin: auto;
}

/* Search Land */
.content-landsearch {
  border-radius: 4px;
  margin: 8px 0;
}

.content-landsearch1 {
  background: url(../images/project-details/serenity_img.jpg) center no-repeat;
  background-size: cover;
}

.content-landsearch2-short {
  background: url(../images/project-details/waterfront_img.jpg) center no-repeat;
  background-size: cover;
}

.content-landsearch3-short {
  background: url(../images/project-details/tapovanam_img1.jpg) center no-repeat;
  background-size: cover;
}

.content-landsearch4-short {
  background: url(../images/project-details/lotus_phase1_img1.jpg) center no-repeat;
  background-size: cover;
}

.content-landsearch5-short {
  background: url(../images/project-details/sree_meadows_img1.png) center no-repeat;
  background-size: cover;
}

.content-landsearch6-short {
  background: url(../images/project-details/highway_green_img1.png) center no-repeat;
  background-size: cover;
}

.content-landsearch7-short {
  background: url(../images/project-details/anand_meadows_img1.jpg) center no-repeat;
  background-size: cover;
}

.content-landsearch8 {
  background: url(../images/project-details/heritage.jpg) center no-repeat;
  background-size: cover;
}

a.grid-item-link.hover-effect-flat {
  position: relative;
}

.hover-effect-flat:before,
landshort-ht:before {
  content: "";
  opacity: .3;
  background-color: #000;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.content-landsearch,
.hover-effect-flat:before {
  height: 400px;
}

.landshort-ht,
landshort-ht:before {
  height: 200px;
}

.grid-item-text-wrap {
  padding: 30px;
  position: relative;
}

.grid-item-subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.grid-item-title {
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
}

.searchland-content .col {
  padding: 0 5px;
}

.content-landsearch2-short,
.content-landsearch2-short .hover-effect-flat:before,
.content-landsearch5-short,
.content-landsearch5-short .hover-effect-flat:before,
.content-landsearch6-short,
.content-landsearch6-short .hover-effect-flat:before {
  height: 180px;
}

.content-landsearch3-short,
.content-landsearch3-short .hover-effect-flat:before,
.content-landsearch4-short,
.content-landsearch4-short .hover-effect-flat:before,
.content-landsearch7-short,
.content-landsearch7-short .hover-effect-flat:before {
  height: 214px;
}

h3.title {
  color: #000;
  font-size: 34px;
  line-height: 1.5em;
}

/* Latest Projects */
.latest-projects-section {
  background-color: #fdfdfe;
}

.listing-image-wrap {
  border-bottom: 1px solid #ddd;
}

.item-wrap-v6 {
  padding: 0;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 0 4px 2px rgb(0 0 0 / 3%);
  box-shadow: 0 0 4px 2px rgb(0 0 0 / 3%);
  position: relative;
  background: #fff;
}

.labels-wrap {
  position: absolute;
  right: 12px;
  top: 12px;
}

.labels-wrap .label {
  font-size: 10px;
  line-height: 11px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  padding: 3px 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, .65);
}

.item-wrap-v6 .item-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
}

.item-wrap-v6 .item-title {
  margin: 0 0 10px;
}

h3.item-title a {
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

h3.item-title a:hover {
  color: #28a77c;
}

.item-price-wrap p {
  font-size: 16px;
}

.btn-primary-outlined {
  color: #28a77c;
  background-color: transparent;
  border-color: #28a77c;
  padding: 7px 45px;
  margin-top: 1em;
}

.btn-primary-outlined:hover {
  color: #fff;
  background-color: #28a77c;
  border-color: #28a77c;
}

.item-wrap-v6 .item-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 20px;
}

/* Completed Projects */
.completed-project-section,
.services-section {
  background-color: #f5f9f8;
}

/* footer */
.footer-top-wrap {
  background-color: #f7f8f9;
}

.footer-bottom-wrap {
  background-color: #f1f2f3;
}

.footer-wrap {
  font-family: Jost;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
  text-transform: none;
}

.widget-title {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.widget-body li {
  padding-top: 8px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 10px;
}

.widget-body li a {
  font-weight: 500;
  color: #000;
}

.widget-body li a:hover {
  color: #28a77c;
}

.widget-body li a i {
  font-size: 12px;
  color: #bfbfbf;
  margin-right: 4px;
}

.footer-bottom-wrap li span {
  color: #000000;
}

.footer-social span a {
  color: #000;
  margin-left: 7px;
}

.footer-bottom-wrap a:hover {
  color: #48629a !important;
}

/* Inside Header */
.inside-header {
  background-color: #7c9eb7;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.about-title {
  text-transform: uppercase;
  font-weight: bold;
}

.left-content p {
  margin-bottom: 1rem;
}

/* About Images Section */
.services-bg1 {
  background: url(../images/services/s1.jpg) center no-repeat;
  background-size: cover;
}

.services-bg2 {
  background: url(../images/services/s2.jpg) center no-repeat;
  background-size: cover;
}

.services-bg3 {
  background: url(../images/services/s3.jpg) center no-repeat;
  background-size: cover;
}

.services-bg4 {
  background: url(../images/services/s4.jpg) center no-repeat;
  background-size: cover;
}

.services-bg5 {
  background: url(../images/services/s5.jpg) center no-repeat;
  background-size: cover;
}

.services-bg6 {
  background: url(../images/services/s6.jpg) center no-repeat;
  background-size: cover;
}

/* Contact */
.contact-section {
  background-color: #f7f8f9;
}

.form-contact {
  padding: 50px 50px 50px;
  background-color: #fff;
}

.form-contact label.field-label {
  font-weight: 500;
  cursor: pointer;
  color: #222222;
  font-family: Jost;
  font-size: 16px;
  line-height: 25px;
  text-transform: none;
}

.form-contact label.field-label:after {
  content: "*";
  color: red;
  padding-left: 0.2em;
}

.form-contact input,
.form-contact textarea {
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  border: 1px solid #dce0e0;
  color: #1f2124;
  padding: 10px;
  border-radius: 4px;
}

.contact-button {
  background-color: #28a77c;
  min-height: 40px;
  color: #fff;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  transition: all .3s;
  width: 100%;
}

.contact-button:hover {
  background-color: #28a77c;
  color: #fff;
}

.addres-field1 {
  padding: 30px 30px 15px;
  background-color: #fff;
}

p.email-cont a {
  color: #28a77c;
}

.map-address iframe {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  filter: brightness(100%) contrast(113%) saturate(0%) blur(0px) hue-rotate(0deg);
  height: 300px;
}

/* Project Details */
.property-details-section{
  background-color: #f7f8f9;
}
.property-navigation-wrap {
  z-index: 99999;
  font-weight: 500;
  font-size: 13px;
  background-color: #fff;
  display: block;
  position: sticky;
  width: 100%;
  top: 0;
}

.property-navigation-wrap li.property-navigation-item {
  padding: 0 2em;
}

li.property-navigation-item a {
  font-size: 15px;
  padding: 15px 0;
  color: #222;
  display: inline-block;
}

.property-navigation-wrap a.active {
  color: #28a77c;
  -webkit-box-shadow: inset 0 -3px #28a77c;
  box-shadow: inset 0 -3px #28a77c;
}

.property-top-wrap .property-banner img{
  border-radius: 4px;
}
.property-top-wrap p.item-price-detail{
  color:#222;
  font-size:18px;
}
.property-top-wrap address i{
  color: #28a77c;
}
.block-wrap {
  padding: 40px;
  background-color: #fff;
  margin-top: 30px;
}
.list-2-cols {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.block-wrap .list-2-cols li, .block-content-wrap .list-1-cols li {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.block-wrap .list-2-cols li i, .block-content-wrap .list-1-cols li i {
  margin-right:8px;
}
.detail-wrap {
  background-color: rgba(40, 167, 124, 0.1);
  border: 1px solid #28a77c;
  padding:20px;
}
.property-document-link a{
color: #28a77c;
}



/* Responsive */
@media (max-width: 1199px) {
  .bannerleft h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .bannerleft h1 {
    font-size: 36px;
    line-height: 46px;
  }

  h3.title {
    font-size: 30px;
    line-height: 40px;
  }

  .widget-title {
    margin-bottom: 8px;
  }
}

@media (max-width: 568px) {
  .banner_main {
    height: 100%;
    min-height: 300px;
  }

  .search-form form {
    margin-right: 0;
  }

  .logo-content .col {
    flex: 1 0 30%;
  }

  h3.title {
    font-size: 26px;
    line-height: 36px;
  }

  .form-contact {
    padding: 30px;
  }
}

@media (max-width: 440px) {
  .bannerleft h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .logo-content .col {
    flex: 1 0 50%;
  }

  h3.title {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 350px) {
  .bannerleft h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .search-form form {
    margin-right: 0;
    display: block !important;
    text-align: center;
    border-radius: 20px;
  }

  .search-form form input {
    margin-right: 0;
    padding: 10px 15px;
  }

  .search-form form button {
    padding: 8px 40px;
    margin-top: 1em;
  }
}