/* web fotn */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --dark-green: #386C34;
  --dark-green-800: #132515;
  --dark-green-700: #114A14;
  --light-green--600: #6FBA4A;
  --light-green--500: #5B9F46;
  --light-black: #1C1C1C;
  --light-grey: #FDFAFA;
  --light-grey-500: #F6F9F5;
  --gradient-buton-bg: linear-gradient(0deg, rgba(1, 60, 7, 1) 0%, rgba(73, 129, 69, 1) 100%);
  --gradient-background: linear-gradient(to bottom right, #386C34, #013C07);
  --error: red;
  --white: #fff;
  --black: #000;
}

body {
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Urbanist", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 144px;
  font-weight: 900;
  line-height: 132px;
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

li {
  list-style: none;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: var(--bs-link-hover-color);
}

a,
button {
  -webkit-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

button,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

.form-control:focus,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 37px;
}

textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
  box-shadow: none;
}

input:hover,
input:active,
input:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: inherit;
}

select:hover,
select:active,
select:focus {
  outline: none;
  box-shadow: none;
}

input[type=number] {
  -moz-appearance: textfield;
  /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

.flex-box {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
}

.custom-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px;
}

.lg-main-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px;
}

nav.navbar .custom-container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 230px);
}
body.has-topbar .select2-container--open:has(.select2-results) {
    transform: translate(0px, 32px);
    z-index: 9;
}
.mobile-contact-list{
  display: none;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #d3eac8;
  display: inline-flex;
  position: relative;
  margin-right: 6px;
  border-radius: 50%;
}

.owl-dots .owl-dot.active span {
  background: #62B23A;
}

/* global solid button */
.global-solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 34px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  background-color: var(--dark-green);
  transition: all 0.4s ease-in-out;

}

.global-solid-button:hover {
  box-shadow: 8px 8px 0px 0px var(--dark-green-700);
  color: var(--white);
}

.global-solid-button.white-solid-button {
  background: #fff;
  color: var(--dark-green);
}

.global-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 34px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  background-color: var(--light-green--600);
  transition: all 0.4s ease-in-out;
}

.global-light-button:hover {
  box-shadow: 8px 8px 0px 0px var(--dark-green);
  color: var(--white);
}


/* global solid button */


.global-header.side-by-side {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.global-headercntn {
  display: flex;
  align-items: center;
}


.partner-item.slick-slide img {
  margin: 0 a;
}

.extra-space {
  padding: 0px 150px;
}

nav.navbar a.nav-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 17.58px;
  color: var(--dark-green-800);
  padding-top: 0px;
  padding-bottom: 0px;
  transform: all 0.4s ease-in-out;
}

a.nav-link.dropdown-toggle{
  padding-left: 0px !important;
}
nav.navbar a.nav-link:hover {
  color: var(--dark-green);
  transform: all 0.4s ease-in-out;

}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-menu {
  -webkit-animation: fadeIn 0.3s alternate;
  animation: fadeIn 0.3s alternate;
  padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
  padding: 10px 19px;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}
ol, ul {
    padding-left: 0px;
}
li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #ffffff;
    top: -12px;
    left: 24px;
}
li.nav-item.dropdown:hover .dropdown-menu:before {
    content: '';
    position: absolute;
    width: 108px;
    height: 26px;
    top: -15px;
    left: 0;
    background: transparent;
    z-index: -1;
}
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  right: 0px;
}

.only_mobile_view {
  display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left:auto;
  right: -12px;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #000000;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  right: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

nav.top-navbar {
  background-color: var(--light-grey);
  padding: 16px 0px;
  position: sticky;
  z-index: 99;
  position: -webkit-sticky;
  transition: all 0.3s ease-in-out;
}
.top-navbar.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 1px 17px 1px #e5e5e5;  
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

nav.top-navbar li.nav-item {
  padding: 0px 10px;
  border-right: 1px solid var(--dark-green-800);
}
nav.top-navbar li.nav-item.dropdown {
    display: flex;
}
nav.top-navbar ul.navbar-nav li.nav-item:first-child {
  border-left: 1px solid var(--dark-green-800);
}

.top-navbar ul.navbar-nav {
  margin: 0 auto;
}
.top-navbar ul.navbar-nav li.current_page_item.active a.nav-link, .current_page_parent:has(li.current_page_item.active a.dropdown-item) a.nav-link, .top-navbar ul.navbar-nav li.current_page_item.dropdown.active a.nav-link, .top-navbar ul.navbar-nav li.current_page_item.active a.dropdown-item{
  color:var(--dark-green);
}
.top-navbar ul.navbar-nav li.current_page_item.dropdown.active a.dropdown-item{
  color: var(--dark-green-800);
}
.dropdown-toggle::after {
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f107";
  border-top: .0em solid !important;
  vertical-align: 0em;
  transition: all 0.4s ease-in-out;
  display: none;
}
nav.top-navbar li.nav-item.dropdown i.fa-solid.fa-angle-down{
  transition: all 0.4s ease-in-out;
}
nav.top-navbar li.nav-item.dropdown:hover i.fa-solid.fa-angle-down {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}
.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}
li.nav-item.dropdown:hover .dropdown-toggle {
  color:var(--dark-green);
}

li.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  top: 30px;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
  box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
  transition: all 0.4s ease-in-out;
}

.dropdown-menu {
  border: none;
}
/* navbar end */
/* hero banner */
.item-hero-banner img {
  object-fit: cover;
  max-height:calc(100vh - 85px);
}

.hero-banner-slide-outer{
  position: relative;
  z-index: 0;
}
.hero-banner-inner {
  display: inline-block;
  background: #598608a8;
  position: absolute;
  bottom: 20%;
  right: 0px;
  top: auto;
  padding: 40px;
  border: 2px solid #ffffff33;
}

.home-hero-banner h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-banner-inner .gradient-solid-button{
  padding: 11px 16px;
}

.gradient-solid-button{
  background-image: var(--gradient-buton-bg);
}

.hero-banner-inner-left{
  position: relative;
  padding-left: 20px;
}
.hero-banner-inner-left::after{
  position: absolute;
  height: 100%;
  content: '';
  width: 2px;
  top: 0px;
  left: 0px;
  background-image:linear-gradient(176deg, black, transparent);
}

.home-hero-banner .custom-container {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 200px);
    top: 0px;
    left: 0;
    right: 0px;
}
.google-map-address .custom-container{
  /* max-width: calc(100% - 230px); */
  max-width:inherit;
}

.home-hero-banner h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 12px;
}

.hero-banner-inner p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 17.58px;
  letter-spacing: 0.07em;
  margin:12px 0px;
}

.hero-banner-inner .global-solid-button.white-solid-button {
  margin-top: 12px;
}

.hero-banner-inner img.form-curve-img {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 0;
  object-fit: contain;
  width: auto;
  min-height: auto;
  max-width: 100%;
}

/* hero banner */
/* hero form start */

.formData {
  display: none;
  box-shadow: 0px 5px 12px 0px #d8d8d8;
  padding: 20px;
  background-color: var(--white);
}
.home-hero-banner .bannerBottomSection {
    max-width: 1200px;
    margin: auto;
    padding-bottom:400px;
}
.home-hero-banner .hero-form .gradient-button {
    width: 60px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}
.home-hero-banner .bannerBottomSection .loaction_select_area .form_control , .home-hero-banner .bannerBottomSection .select2-container--default .select2-selection--multiple, .home-hero-banner .bannerBottomSection .loaction_select_area .form_control.localite input, .home-hero-banner .bannerBottomSection .input_type, .home-hero-banner .hero-form .gradient-button {
    height: 50px;
}
.home-hero-banner .bannerBottomSection .loaction_select_area .form_control:after {
    top: 16px;
}
.home-hero-banner .bannerBottomSection .loaction_select_area .form_control{
  background-color: transparent;
  border: none;
}
.home-hero-banner .formData {
    padding: 4px 6px;
    border-radius: 70px;
}
.home-hero-banner .hero-form .gradient-button img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.home-hero-banner {
  position: relative;
}

.hero-form {
  margin-top: -80px;
    position: relative;
    padding-bottom: 50px;
}

/* new added */
/* .hero-form {
  position: relative;
} */

.activeTab {
  display: block;
}

.form-select {
  border-radius: 0px;
  height: 62px;
  border: 1px solid #C7D5E1;
  background-color: #EAF0F5;
}

.hero-form .gradient-button {
  background-image: var(--gradient-buton-bg);
  border-radius: 0px;
  color: var(--white);
  width: 100%;
  flex-basis:25%;
  height: 62px;
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  border: 0px;
}

.hero-form .gradient-button:active {
  color: var(--white);
}

.hero-form .gradient-button img {
  position: absolute;
  left: 16%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.hero-form ul.parentClass {
  display: inline-flex;
  background: #ffffff;
  padding: 15px 22px;
  box-shadow: -3px -6px 10px 1px #e0e0e0;
}

.hero-form .parentClass {
  display: inline-flex;
  padding: 15px 20px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0px -5px 8px 1px #d5d5d5;
}

.hero-form .parentClass label {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}

.home-hero-banner .hero-form .parentClass label {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  border:1px solid #fff;
  height: 53px;
  min-width: 138px;
  justify-content: center;
  border-radius: 40px;
}

.hero-form .parentClass label:hover {
  cursor: pointer;
}
.home-hero-banner .parentClass input.radioCls {
    position: absolute;
    opacity: 0;
}
.top-hero-banner-cntn-main {
  position: relative;
}

.top-hero-banner-cntn-main::after {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  background: radial-gradient(circle, #0000008f, #00000000, #00000000) 100%;
  height: 570px;
  width: 570px;
  z-index: -1;
}

.top-hero-banner-cntn-main h1 {
  text-align: center;
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 82.55px;
  text-align: center;

}
.hero-banner-slide-outer .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 9999;
}
.hero-banner-slide-outer .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 9999;
}
.hero-banner-slide-outer .owl-nav button.owl-prev button.owl-prev {
  height: 92px;
  background: #ffffff87;
  width: 25px;
  border-radius: 0px 6px 6px 0px;
}
.hero-banner-slide-outer .owl-nav button.owl-next button.owl-next {
  height: 92px;
  background: #ffffff87;
  width: 25px;
  border-radius: 6px 0px 0px 6px;
}
.hero-banner-slide-outer .owl-dots button {
  background: transparent;
  color: #fff;
  position: relative;
  margin: 10px 0;
  display: flex;
  align-items: center;
  padding-right: 50px;
}

.hero-banner-slide-outer .owl-dots button::after {
  content: '';
  width: 18px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  right: 0;
  transition: all 0.5s ease-in-out;
}

.hero-banner-slide-outer .owl-dot.active button::after {
  width:37px;
}
.hero-banner-slide-outer .owl-dots {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  z-index: 9;
}

.hero-banner-slide-outer .owl-dots::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index:-1;
  transform: scale(1.5);
  right: 19px;
  background: radial-gradient(circle, #00000021, rgb(0 0 0 / 0%) 100%);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: #00000000;
  box-shadow: 0px 1px 13px 1px #00000021;
}

.top-sub-headinh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top-sub-headinh span {
  background: #ffffff;
  width: 60px;
  height: 1px;
  display: inline-block;
}
.top-hero-banner-tp-heading {
  background: rgb(0 0 0 / 19%);
  padding: 35px 20px;
  max-width: 1200px;
  margin: auto;
}
.top-sub-headinh h6{
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  color: #fff;
}

.home-hero-banner .parentClass label:has(.radioCls:checked) {
  color: #000;
  background-color: #fff;
}

.parentClass label:has(.radioCls:checked) {
  color: #63AC40;
}

.parentClass input.radioCls {
  accent-color: #4d912c;
}

/* hero form end */
/* property value start */
.property-valued {
  padding: 60px 0px 80px;
}

.global-header {
  margin-bottom: 40px;
}

.global-header h2 {
  word-break: break-word;
}

.global-header {
  display: flex;
  align-items: center;
}

.global-header.gb-hder-center {
  justify-content: center;
  text-align: center;
}

span.global-spaner-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 2px;
  margin-right: 15px;
}

span.global-spaner-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 2px;
  margin-left: 15px;
}

span.global-spaner-right.green-shape {
  background: linear-gradient(45deg, var(--light-green--500), transparent);
}

span.global-spaner-left.green-shape {
  background: linear-gradient(272deg, var(--light-green--500), transparent);
}

span.global-spaner-left.white-shape {
  background: linear-gradient(272deg, var(--white), transparent);
}

.current-promotion span.global-spaner-left.white-shape {
  display: none;
}
.current-Promotion .owl-nav {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  max-width: 141px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.current-Promotion .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  max-width: 107px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.current-Promotion .owl-dots .owl-dot span{
  background-color: #fff;
  transition: all 0.1s ease-in-out;
}
.current-Promotion .owl-dots .owl-dot.active span {
  width: 11px;
  height: 11px;
  background-color: #62B23A;
}

.current-Promotion .owl-dots button.owl-dot {
  display: flex;
  align-items: center;
}
.current-Promotion .owl-nav {
  color: #fff;
}
.property-value-item img {
  width: 100%;
  object-fit: cover;
}

.property-value-item {
  position: relative;
}
.property-value-item .global-solid-button {
    padding: 11px 11px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: normal;
    width: 100%;
    text-align: center;
}
.property-value-item::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.property-value-item:hover::after{
  opacity: 1;
  visibility: visible;
}
.property-value-item .cntn-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(359deg, black, transparent);
}

.property-value-item .cntn-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  letter-spacing: 0.05em;
  padding: 20px 0px;
  border-bottom: 1px solid #969696;
  margin-bottom: 20px;
}

.property-value-item .cntn-box h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
}

.global-solid-button.border-btn {
  background: transparent;
  border: 1px solid #fff;
}

.global-solid-button.border-btn:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.property-value-item:hover {
  cursor: pointer;
}

/* property value end */
/* current promotion start */
.current-promotion {
  background: var(--gradient-background);
  padding: 80px 0px;
}

.current-promotion .global-headercntn h2 {
  color: var(--white);
}

.global-spaner-right.white-shape {
  background: linear-gradient(45deg, var(--white), transparent);
}

.current-promotion-item {
  position: relative;
}

.current-promotion-item img {
  height: 380px;
  object-fit: cover;
}

.current-promotion-item .content-box {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: var(--white);
  padding: 30px;
  max-width: 394px;
  width: 100%;
}

.current-promotion-item .content-box h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: var(--dark-green);

}

.current-promotion-item .content-box h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
}

.current-promotion-item .content-box h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0.12em;
  text-align: left;
  color: var(--dark-green);
  text-transform: uppercase;
}

.current-promotion-item .content-box h5 a {
  color: var(--dark-green);
  transition: all 0.3s ease-in-out;
}
.current-promotion-item .content-box h5 a:hover{
  color: #6FBA4A;
}

.current-promotion-item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #6A6A6A;
  margin: 10px 0px 0px;
}

/* current promotion end */
/* our services start */
.our-services {
  padding: 80px 0px 60px;
}
.our-services .row{
  justify-content: center;
}
.service-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  padding-bottom: 16px;
  color: #132515;
}

.service-item h3::after {
  content: '';
  background-color: #4F8F3C;
  position: absolute;
  height: 2px;
  width: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.service-item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #6A6A6A;
}

.service-item {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid #e1e1e1;
  margin: 20px 0px;
  min-height: 264px;
  display: flex;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.our-services a .service-item:hover {
  border: 1px solid #e1e1e1;
  border-bottom: 1px solid #407E2D;
  cursor: pointer;
}

/* our services end */
/* client feedback start */
.client-feedback {
  background-color: var(--light-grey-500);
  padding: 80px 0px 120px;
}

.client-feedback span.global-spaner-left {
  display: none;
}

.client-feedback-item {
  background-color: var(--white);
}

.client-feedback-item .global-header {
  margin-bottom: 20px;
}

.client-feedback-item p {
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #616A75;
}

.client-feedback-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #132515;
}
.client-quote-inner{
  padding-bottom: 40px;
}

.client-feedback .client-bio-card {
  margin-top: 20px;
}

.client-feedback .client-bio-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.06em;
  text-align: left;
  margin-top: 6px;
  color: #616A75;
}

.client-feedback .client-feedback-item {
  background-color: var(--white);
  border: 1px solid #C7D5E1;
  padding: 40px;
  margin:auto 1px;
  max-width: 98%;
}

.client-feedback .owl-nav {
    text-align: right;
    margin-top: -65px;
    position: relative;
    z-index: 9;
    padding-right: 0px;
    width: 234px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
}

.client-feedback .owl-nav i {
  color: #C7D5E1;
}

.client-feedback .owl-nav button.owl-prev {
  position: relative;
}

.client-feedback .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    margin-left: auto;
    margin-top: -27px;
    margin-right: 18px;
    position: relative;
    z-index: 9999;
    gap: 7px;
}
.client-feedback .lg-main-container{
  max-width: 1140px;
}
.client-feedback .owl-nav button.owl-prev button.owl-prev {
  left: 0;
}

.client-feedback .owl-nav button.owl-next button.owl-next {
  right: 0;
}

.owl-dots.active span {
  background: #62B23A !important;
}

/* client feedback end */
/* google map address box start */
.google-map-address iframe {
  width: 100%;
  height: 605px;
  margin-bottom: -8px;
  line-height: 0px;
  padding: 0px;
  border: 0px;
}

section.google-map-address {
  position: relative;
}

.inner-main-cntn {
  position: absolute;
  top: 50%;
  right: 115px;
  transform: translate(0%, -50%);
  /* width: 100%; */
}

.address-box {
  max-width: 448px;
  background: var(--white);
  width: 100%;
  /* margin-left: auto; */
  padding: 35px;
}

.address-box h2 {
  position: relative;
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  text-align: left;
  margin-bottom: 25px;
}

span.address-box-border-top {
  display: inline-block;
  background: #5B9F46;
  width: 58px;
  height: 4px;
  margin-bottom: 15px;
}

.box-item-inner p {
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #212529;
}

.address-box-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  text-align: left;
  color: #114A14;
  margin-bottom: 14px;
}

.box-item-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.box-item-inner span {
  display: inline-flex;
  height: 40px;
  width: 40px;
  background: #5B9F46;
  border-radius: 50%;
  padding: 10px;
  position: relative;
  top: 5px;
}

.address-box-item:not(:last-child) {
  margin-bottom: 21px;
}


/* google map address box end */

/* footer start */
footer.footer {
  padding: 80px 0px 0px 0px;
  background-color: var(--light-black);
  color: var(--white);
}

footer.footer a {
  color: var(--white);
}
footer.footer .footer-copyright a:hover {
    text-decoration: underline;
}
.footer-copyright {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid #ffffff3d;
  margin-top: 50px;
}

footer.footer .footer-logo {
  width: 35%;
}

footer.footer .flex-box {
  justify-content: space-between;
}

footer.footer .footer-logo {
  width: 25%;
}

footer.footer .ftr-header {
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--light-green--500);
}

footer.footer .footer-logo p {
  margin: 20px 0px;
}

footer.footer ul.ftr-social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

footer.footer ul.ftr-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #386c34;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

footer.footer ul.ftr-social a:hover {
  background-color: #386c34;
}

footer.footer ul.ftr-social a:hover img {
  filter: brightness(50);
}

footer.footer .ftr-header::after {
  position: absolute;
  content: '';
  width: 36px;
  height: 1px;
  background: #386c34;
  left: 0;
  bottom: 0px;
}

.footer-nav ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-decoration-skip-ink: none;
  padding: 4px 0px;
  width: 100%;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.footer-nav ul li a:hover {
  cursor: pointer;
  color: var(--light-green--500);
}

.footer-nav ul li a span {
  display: inline-flex;
  width: 31px;
  position: relative;
  top: 4px;
}

.footer-accordian .accordion-button {
  padding-left: 0px;
  padding-right: 0px;
  background-color: transparent;
  color: #5B9F46;
  font-size: 17px;
  font-weight: 700;
  line-height: 20.4px;

}

.footer-accordian .accordion-item {
  background: transparent;
  color: #fff;
  border-color: #ffffff1c;
}

.footer-accordian .accordion-button::after {
  filter: brightness(50);
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  border-color: #ffffff1c;
}


/* footer end */
/* property listing start */

.inner-top-banner .formData {
  display: block;
}

.hero-form.inner-top-banner {
  margin-top: 0px;
  padding-bottom: 30px;
}

.property-listing-main {
  padding: 80px 0px;
  background: #f6f6f6;
}

.border-top-grey {
  border-top: 1px solid #ececec;
}

.property-main-head {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
  padding-bottom: 30px;
}

.property-thumb {
  position: relative;
  overflow: hidden;
}

.property-thumb img {
  width: 100%;
  object-fit: cover;
  height: 310px;
}

.property-thumb span.property-tag,
.product-gallery-item .property-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  min-width: 119px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30.81px;
  letter-spacing: 0.02em;
  border-radius: 5px;
  padding: 8px 20px;
}

.property-thumb span.property-tag.white-tag, .product-gallery-item span.property-tag.white-tag {
  color: #386C34;
  background: var(--white);
}

.green-tag {
  background-color: #386C34;
  color: var(--white);
}

span.property-tag.red-tag::after, span.property-tag.grey-tag::after {
  content: '';
  position: absolute;
  right: -57px;
  clip-path: polygon(-1% -29%, -1% 100%, 100% 100%);
  background: #fc4e4e;
  height: 46px;
  width: 58px;
}

span.property-tag.red-tag, span.property-tag.grey-tag {
  transform: rotate(319deg) translate(-24px, -3px);
  background: #FC4E4E;
  border-radius: 0px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.02em;
}

span.property-tag.red-tag::before, span.property-tag.grey-tag::before {
  content: '';
  position: absolute;
  left: -57px;
  clip-path: polygon(100% -29%, -1% 100%, 100% 100%);
  background: #fc4e4e;
  height: 46px;
  width: 58px;
  z-index: 9;
}

span.property-tag.grey-tag, span.property-tag.grey-tag::after, span.property-tag.grey-tag::before {
  background: #7A7A7A !important;
}

.propertry-text-top {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.propertry-text-top .text-left-in {
  width: calc(100% - 0px);
}

.property-item-box {
  background: #fff;
  box-shadow: 0px 6px 11px 2px #ebebeb;
  margin-bottom: 30px;
}

.propert-text-box {
  padding: 25px;
}

ul.property-item-list {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.propert-text-box .text-left-in p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.08em;
    color: #376B33;
    margin: 16px 0px 10px;
    max-width: calc(100% - 95px);
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
}

.propert-text-box .text-left-in h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #132515;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
}

.text-left-in span {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  ;
  color: #4A4A4A;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

ul.property-item-list li img {
  margin-right: 8px;
}

ul.property-item-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #7A7A7A;
}

.propertry-text-top .text-right-in span {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #656565;
  display: block;
}

.propertry-text-top .text-right-in {
    text-align: center;
    color: #656565;
    position: absolute;
    right: 0;
}
.product-info-left .propert-setail-rgt-icon .text-right-in {
    position: initial;
}
.product-info-left .propert-setail-rgt-icon .text-right-in:hover{
  cursor: pointer;
}
.property-pagination ul.pagination {
  justify-content: center;
}

.property-pagination a.global-solid-button {
  display: none;
}

.property-pagination ul.pagination li.page-item .page-link {
  border: 1px solid #386C34;
  color: #386C34;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0px 4px;
  transition: all 0.3s ease-in-out;
}

.property-pagination ul.pagination li.page-item.active .page-link,
.property-pagination ul.pagination li.page-item .page-link:hover {
  background-color: #386C34;
  color: white;
}

.page-link:focus {
  box-shadow: none;
}

.footer-accordian {
  display: none;
}

/* property listing end */

/* property details page */
.product-gallery-main,
.product-details-info-main .product-details-main {
  display: flex;
  gap: 20px;
}

.product-details-main {
  margin-top: 50px;
}

span.product-gallery-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  background: #fff;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #000;
  cursor: pointer;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover{
  border-color: #4d912c !important;
}

.product-gallery-left,
.product-info-left {
  width: 60%;
  overflow: hidden;
  position: relative;
}

.product-gallery-right,
.prduct-detilas-right {
  width: 38%;
  display: flex;
  flex-direction: column;
}

.product-gallery-right {
  justify-content: space-between;
}

.gallery-right-item {
  height: calc(50% - 10px);
}

.gallery-right-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-gallery-item {
  position: relative;
  height: 100%;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info-left ul.property-item-list li:not(:last-child) {
  border-right: 1px solid #d4d4d4;
  padding-right: 12px;
}

.product-info-left .propert-text-box {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

.product-details-info-main p {
  color: #6A6A6A;
  margin: 10px 0px;
}

.product-details-info-main {
  padding-bottom: 60px;
  font-size: 15px;
  line-height: 24px;
  color: #6A6A6A;
}

.small-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.small-header h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: 0.01em;
  color: #1F1F1F;
}
.propert-left-cntn-box strong{
  color: #1F1F1F;
}
.propert-left-cntn-box ul li::after {
  content: '';
  height: 5px;
  width: 5px;
  background: #4d912c;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 14px;
}

.propert-left-cntn-box ul li {
  position: relative;
  padding-left: 13px;
}

.small-header h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
}

.propert-left-cntn-box {
  margin: 30px 0px;
}

.property-detail-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0px;
}

.property-detail-categories h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #1F1F1F;
}

.product-info-left ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #6A6A6A;
  min-width: 16%;
}
.contenu ul li, .contenu ol li {
    /* list-style-type: disc; */
    list-style-type: inherit;
    margin-left: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 26px;
    padding-bottom: 5px;
}
.contenu ul li ul li, .contenu ol li ul li {
    padding-bottom: 0px;
}
.contenu ul li::marker,  .contenu ol li::marker{
    color:#4d912c;
}
.property-detail-categories {
  margin-top: 30px;
}

.property-detail-categories .small-header h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: 0.01em;
}
.product-info-left .propert-setail-rgt-icon {
    flex: 1;
    justify-content: end;
    gap: 17px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    width: 150px;
    height: 50px;
}
.product-details-main .propertry-text-top .text-left-in p {
    max-width: calc(100% - 165px);
}
.product-details-main .propertry-text-top .text-left-in {
    width: 100%;
}
.prduct-detilas-right {
  background: #F6F6F6;
  padding: 30px;
}

.product-detail-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.product-info-form .form-control {
  height: 58px;
  border-radius: 0px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #949494;
  resize: none;
  background-color: transparent;
}

.product-info-form .form-control::placeholder {
  color: #949494;
}

.product-info-form .form-group {
  margin: 8px 0px;
}

.product-info-form textarea.form-control {
  height: auto;
  min-height: 148px;
  text-align: left;
}

.product-details-info-main .product-details-main {
  align-items: flex-start;
}

.product-details-info-main label.form-check-label {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #6A6A6A;
}

.product-details-info-main label.form-check-label a {
  color: #6A6A6A;
  text-decoration-line: underline;
}

.pro-profile-text h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.03em;
  color: #132515;
}

.pro-profile-text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #7A7A7A;
}

.product-detail-profile .pro-profile-thumb {
  height: 148px;
  width: 148px;
  overflow: hidden;
  border-radius: 50%;
}

.product-detail-profile .pro-profile-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-info-form .form-check {
  margin: 25px 0px;
  cursor: pointer;
}

.product-details-gallery {
  padding-top: 60px;
}

.more-property-nearby-btn {
  text-align: center;
}

.product-info-form .form-check .form-check-input:checked {
  background-color: #386c34;
  border-color: #386c34;
}

.product-info-form .form-check:hover {
  cursor: pointer;
}

.product-details-info-main .prduct-detilas-right {
  background: #F6F6F6;
  padding: 30px;
  width: calc(38% - 20px);
  margin-left: auto;
}

.property-sub-pera-spaner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.property-sub-pera-spaner h6 {
  width: 160px;
  text-align: right;
}

.property-sub-pera-spaner span {
  flex: 1;
}

/* property details page */

/* blocks start */
.blocks-top-cntent {
  padding: 40px 0px 30px 0px;
}

.blocks-top-cntent .global-header {
  margin-bottom: 30px;
}

.cntn-heading-pera h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}

.cntn-heading-pera {
  margin: 20px 0px;
}

.cntn-heading-pera p,
p.cntn-pera-grey {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #6A6A6A;
  margin: 8px 0px;
}

.block-inner-cntent {
  max-width: 85%;
  /* margin-bottom:80px; */
}

.block-top-content-left-inner {
  padding-right: 40px;
}
.block-top-content-right-inner img {
  width: 100%;
}

.team-item {
  text-align: center;
  margin: 30px 0px;
}
.team-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #132515;
  margin: 9px 0px;
}
.team-item span {
  display: inline-flex;
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 50%;
}
.team-item p {
  color: #6A6A6A;
}
.team-item a, .product-detail-profile .pro-profile-text a{
  color: #6A6A6A;
}
.team-item a img, .product-detail-profile .pro-profile-text a img {
  margin-right: 6px;
}
.team-item .phone, .team-item .email {
  margin: 4px 0px;
}
.product-detail-profile .pro-profile-text .phone, .product-detail-profile .pro-profile-text .email {
  margin: 9px 0px;
}

.team-item .languages {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top:15px;
}

.team-item .languages img {
  width: 24px;
  height: 14px;
  object-fit: cover;
}

.our-team {
  padding: 70px 0px;
}

.block-bottom-card p{
  color: #6A6A6A;
  margin: 10px 0px;
}

.block-bottom-feature-cntn {
  padding: 60px 0px 40px;
}
.block-bottom-feature-cntn .global-header {
  margin-bottom: 25px;
}
.block-bottom-card .global-solid-button {
  margin-top: 15px;
}
/* blocks end */

/* mutiple select dropdown start */
.bannerBottomSection .select2-container--default .select2-selection--multiple .select2-selection__clear {
  font-size: 20px;
  box-shadow: 0 0 5px #ccc;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  text-align: center;
  background-color: #f3f3f3;
  position: absolute;
  right: 5px;
  top: 5px;
  margin-right: 0;
  margin-top: 0;
  display: none;
}
.bannerBottomSection .select2_form > .select2 {
  width: 100% !important;
}
.bannerBottomSection .loaction_select_area .form_control {
  position: relative;
  z-index: 2;
  border-radius: 0px;
  height: 62px;
  border: 1px solid #C7D5E1;
  background-color: #EAF0F5;
  /* flex-basis:25%; */
  flex-basis:auto;
}
.bannerBottomSection .loaction_select_area .form_control {
  width: calc((100% - 60px) / 3);
}

.bannerBottomSection span.select2-search.select2-search--inline {
  display: inline-block;
}
.bannerBottomSection .loaction_select_area .form_control.localite input {
  height: 58px;
  line-height: 58px;
}
.bannerBottomSection .loaction_select_area .form_control.localite input::placeholder{
  color: #000;
}
.bannerBottomSection .select2-container--default .select2-search--inline .select2-search__field {
  margin-top: 0;
  margin-left: 0;
}
.bannerBottomSection .select2-container--default .select2-selection--multiple {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bannerBottomSection .select2-container--default .select2-selection--multiple .select2-selection__choice:first-child {
  margin-left: 0;
}
.bannerBottomSection .select2-container--default .select2-selection--multiple .select2-selection__choice {
  color: #000;
  border-radius: 2px;
  border: none;
  background-color: #ebebeb;
  padding: 4px 6px;
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
}
.bannerBottomSection ul.select2-selection__rendered li {
  width: auto;
}
.bannerBottomSection .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  float: right;
  border-right: none;
  color: #000;
  font-size: 17px;
  line-height: 1;
  /* overflow: auto; */
}
.bannerBottomSection .select2-container--default .select2-selection--multiple {
  border: 0px;
  padding: 0 30px 0 20px;
  border-radius: 0;
  height: 60px;
  border-right: none;
  padding-bottom: 0;
  overflow: auto;
  background: transparent;
}
.bannerBottomSection .select2-container--default .select2-selection--multiple:hover {
    cursor: pointer;
}
.bannerBottomSection .input_type {
  height: 60px;
  line-height: 60px;
  font-size: 17px;
  color: #000;
  border-right: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0 20px;
  display: block;
  width:calc(100% - 0px);
  text-align: left;
  overflow: hidden;
  transition: none;
}
.bannerBottomSection .filter_popup.show {
  display: block;
}
.bannerBottomSection .filter_popup {
  display: none;
  box-shadow: 0 0 10px #ccc;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  z-index: 9;
}
.bannerBottomSection .loaction_select_area .form_control.type .typeUl, .loaction_select_area .form_control.type .typeUlBuy, .loaction_select_area .form_control.type .typeUlBuyPage, .loaction_select_area .form_control.type .typeUlRentPage {
  display: none;
}
.bannerBottomSection .typeUlBuy, .typeUl, .typeUlBuyPage, .typeUlRentPage {
  padding: 0 40px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - 0px);
  border-right: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: -1;
}
.bannerBottomSection .loaction_select_area .form_field .type_select {
  background-color: #fff;
  padding: 20px;
}
.bannerBottomSection .loaction_select_area .form_control:after {
  content: '';
  position: absolute;
  right: 17px;
  top: 21px;
  background-image: url(../images/down-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  z-index: -1;
}
.bannerBottomSection .loaction_select_area .form_field .type_select .type_custom_show {
  margin-bottom: 10px;
}
.bannerBottomSection .type_custom_show {
  position: relative;
  z-index: 0;
  padding-left: 35px;
  padding-right: 0 !important;
  cursor: pointer;
  display: block;
  width: auto !important;
}
.bannerBottomSection .loaction_select_area .form_field .type_select input.custom_checkbox {
  height: 20px;
  line-height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.loaction_select_area .form_field input {
  height: 60px;
  line-height: 60px;
  font-size: 17px !important;
  color: #000;
  border: 1px solid #7f7f7f;
  border-right: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0 40px;
}
.bannerBottomSection .type_custom_show input {
  display: none !important;
}
.bannerBottomSection .loaction_select_area .form_field .type_select label {
  margin-bottom: 0;
  vertical-align: middle;
}
.bannerBottomSection .type_custom_show em {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 2.5px;
  width: 20px;
  height: 20px;
  border: 2px solid #4f8f3c;
  background-color: transparent;
  display: block;
  border-radius: 0;
}
.bannerBottomSection .type_custom_show em:before {
  content: "";
  position: absolute;
  opacity: 0;
  left: 5px;
  top: 0;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bannerBottomSection .type_custom_show input:checked + label em:before {
  opacity: 1;
}
.bannerBottomSection .price_box_show {
  display: none;
  flex-wrap: wrap;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  border-right: none;
  z-index: -1;
}
.bannerBottomSection .loaction_select_area .form_control.appartement .filter_popup {
  text-align: center;
}
.bannerBottomSection .filter_popup.show {
  display: block;
}
.price_range {
  display: flex
;
}
.bannerBottomSection .max_min_val_group {
  display: flex
;
  flex-wrap: wrap;
  margin-top: 0;
}
.bannerBottomSection .max_min_val_group ul li {
  width: 100%;
  padding: 0 8px;
  cursor: pointer;
  font-size: 15px;
  height: 48px;
  line-height: 46px;
  border-bottom: 1px solid #7f7f7f;
  text-align: center;
  transition: 0.3s;
}
.bannerBottomSection .max_min_val_group ul li:hover, .max_min_val_group ul li.active {
  background-color: #4f8f3c;
  color: #fff;
}
.bannerBottomSection .loaction_select_area .form_control.appartement.activeOption .input_type {
  text-indent: -9999px;
}
.bannerBottomSection .loaction_select_area .form_control.type.checkedInput .input_type {
  text-indent: -9999px;
}
.bannerBottomSection .price_box_show li:first-child {
  position: relative;
  width: calc(50% + 6px);
}
.bannerBottomSection .price_box_show li:last-child {
  width: calc(50% - 6px);
}
.bannerBottomSection .price_box_show li {
  height: 58px;
  line-height: 58px;
}
.bannerBottomSection .price_box_show li:first-child:after {
  right: 15px;
}

.bannerBottomSection .loaction_select_area .form_control.type.checkedInput .typeUl, .loaction_select_area .form_control.type .typeUlBuy, .loaction_select_area .form_control.type.checkedInput .typeUlBuyPage, .loaction_select_area .form_control.type.checkedInput .typeUlRentPage {
  display: block;
  height: 60px;
  line-height: 60px;
}
.form_control.appartement.show_dropdown {
  z-index: 1;
}
.bannerBottomSection .type_custom_show input:checked + label em {
  background-color: #4f8f3c;
  border-color: #4f8f3c;
}
.bannerBottomSection .loaction_select_area .form_control.appartement.activeOption .price_box_show {
  display: flex;
  width: 100%;
}

.bannerBottomSection .loaction_select_area .form_field .price_range_input input {
  height: 38px;
  line-height: 40px;
  padding: 0 10px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
}
.bannerBottomSection .max_min_val_group > div {
  width: 50%;
}
.bannerBottomSection ul.min-price-list.option-list, ul.max-price-list.option-list {
  padding-left: 0px;
  margin-top: 0px;
}

.loaction_select_area .form_field {
  display: flex;
  gap: 10px 15px;
}

/* mutiple select dropdown start */

.object-listing-section{
  margin-top: 0px;
}
.object-listing-section .formData{
  display: block;
}

.contenu h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--light-green--500);
}
.contenu h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
  /* color: var(--light-green--500); */
}
.contenu p {
  margin: 10px 0px;
  color: #6A6A6A;
}
.block-inner-cntent .contenu p a, .contenu ul li a, .contenu ol li a, .contenu p a{
    color: #386c34;
    text-decoration: underline;
}
.contenu p a.global-solid-button {
    color: #fff;
    text-decoration: none;
    margin: 10px 0px;
}
.contenu ul li::marker, .contenu ol li::marker {
    color: #4d912c;
}
.contenu li{
  color: #6A6A6A;
}
.property-listing-items{
  padding-top: 30px;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 2;
}
.property-item-box .propert-text-box {
  min-height:220px;
}

.property-item-box .property-thumb::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: #c2c1c18f;
  z-index: 0;
  filter: grayscale(1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.property-item-box:hover .property-thumb::after, .vendu .property-item-box .property-thumb::after{
  opacity: 1;
  visibility: visible;
}
.bannerBottomSection .price_box_show li:first-child:after {
  content: '-';
  position: absolute;
}
/* lightbox */
.gallery-hidden {
  display: none;
}
.gallery-item span.product-gallery-number img {
  max-width: max-content;
}
.gallery-container {
  display: grid;
  grid-template-columns: 62% 37%; /* Two columns */
  gap: 10px; /* Space between items */
  margin: 20px;
  max-width:100%;
  margin: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
  object-fit: cover;
}
.gallery-item{
  position: relative;
  overflow: hidden;
}
 
.gallery-item:first-child {
  grid-row: span 2; /* Span two rows */
}
.gallery-item.video::after {
  position: absolute;
  content: "\f04b";
  height: 80px;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font: normal normal normal 14px / 1 FontAwesome;
  -webkit-font-smoothing: antialiased;
  border: 3px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
}
.price_range .price_range_input:last-child .price-input-wrapper .price-wrapper-field {
  margin-left: 0px;
  border-left:0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.price_range .price_range_input:first-child .price-input-wrapper .price-wrapper-field {
  margin-right: 0px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.price_range .price-wrapper-field {
  border: 1px solid #c4c4c4;
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 5px 5px;
}
.price-input-wrapper span.red-text {
  font-size: 13px;
  color: #457d42;
}

/* share modal start */
.share-outer {
  display: flex;
  flex-direction: column;
  gap: 15px 0px;
}
.share-social a {
  font-size: 18px;
  color: var(--dark-green);
}
.share-social a i{
  margin-right:5px;
}
.share-input {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 18px;
}

.share-input input {
  flex: 1;
  border-radius: 6px;
  padding: 5px 15px;
  border: 1px solid #939393;
}
.select2-results__option--selectable:hover {
    cursor: pointer;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--dark-green-700) !important;
}
/* share modal end */

/* tooltips start */
.share-input input.text {
	padding: 10px;
	font-size: 18px;
	color: #555;
	border: none;
	outline: none;
}
.share-input button {
	padding: 10px 10px 10px 30px;
	outline: none;
	border-radius: 6px;
	cursor: pointer;
  position: relative;
  background-color: transparent;
  border: 1px solid #939393;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.share-input button::after{
  content:"\f0c5";
  position: absolute;
  left: 10px;
  font-size: 18px;
  font: normal normal normal 14px / 1 FontAwesome;
}
.share-input.active button::after{
  content:"\f00c";
  font: normal normal normal 14px / 1 FontAwesome;
}

.share-input.active button::before,
.share-input.active button::after {
	display: block;
}
.share-input.active button{
  background-color:var(--dark-green-700);
  color: var(--white);
  border-color: var(--dark-green-700);
}

/* tooltips end */


/* contact us form section start */
.contact-us-form-seven{
  padding: 120px 0px;
  background-color: var(--dark-green-700) !important;
  /* background:url('../images/hero-banner.png')no-repeat;
  background-position: center;
  background-size: cover; */
}
.contact-form-outer {
  max-width: 960px;
  border-radius: 10px;
}
.contact-form-outer h2 {
  text-align: left;
  margin-bottom: 10px;
  color: var(--white);
}
.contact-form-outer .form-check {
    margin: 16px 0px;
    padding-left: 8px;
}
.contact-form-outer form {
  margin-top: 24px;
}
.contact-form-outer form input.form-control {
  border-radius: 0px;
  height: 50px;
  border: 1px solid var(--white);
  background-color: var(--white);
}
.contact-form-outer form textarea.form-control{
  border: 1px solid var(--white);
  background-color: var(--white);
  min-height: 70px;
  resize: none;
  border-radius: 0px;
}
.contact-form-outer form .form-group {
  margin: 10px 0px;
}
.contact-form-outer .global-solid-button {
    color:var(--dark-green-700);
    background-color: var(--white);
    border: 0px;
}
.contact-form-outer .global-solid-button:hover {
    box-shadow: 8px 8px 0px 0px #ffffff8a;
    color: var(--dark-green-700);
}
.contact-form-outer form p .wpcf7-submit{
  float: right;
}
.contact-form-outer .wpcf7-response-output {
    color:var(--white);
}
.contact-form-outer form .form-check-label a {
  color:var(--light-green--600);
  font-weight: 600;
}
.contact-form-outer form .form-check-label {
  font-weight: 400;
  cursor: pointer;
  color: var(--white);
}
.contact-form-outer form .form-check input {
  border-radius: 0px;
  border-color:var(--dark-green);
}
.contact-form-outer form .form-check-input:checked{
  background-color:var(--dark-green);
}

/* contact us form section end */

/* .bloc-contact h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}
.bloc-contact p {
  margin-bottom: 12px;
}
.bloc-contact .product-info-form .form-control {
  border-color: #000;
}


.bloc-contact {
  padding: 40px 0;
} */

.form-error-msg {
  display: none;
  color: var(--error);
}
#object-contact-form #form-submission-message{
  margin-top: 10px;
}
#object-contact-form #form-submission-message.success{
  color: var(--dark-green);
}
#object-contact-form #form-submission-message.error{
  color: var(--error);
}
.top-logo-part img{
  max-height: 64px;
}