@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --primary_color: #efbf04;
  --bg-light-purple: #f8f6ff;
  --bg-light-blue: #f8faff;
  --dark_bg: #343a4b;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: #f3f3f3;
}

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

a {
  text-decoration: none;
  transition: ease-in 0.5s;
}
button:focus,
button:hover {
  outline: 0px;
  border: 0px;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 0px;
  border: 0px;
}
a:hover {
  color: var(--primary-color);
}
p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #111;
  margin-bottom: 0.5rem;
}
ul,
ul li {
  list-style: none;
  padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Italiana", sans-serif;
  color: #434a60;
}
.bg_secondary {
  background-color: #01173f;
}

.bg_light-grey {
  background: #fff;
}
.bg_blueprint {
  background-image: url(../images/bg_blueprint.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}
.btn_group {
  display: flex;
  gap: 20px;
  margin: 30px 0px;
}
.btnPrimary {
  font-family: "Inter", sans-serif;
  background: #009643;
  border: 1px solid #009643;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  margin: 10px 0px;
}

.btnPrimary:hover,
.btnPrimary:focus {
  border: 1px solid #009643;
  background: transparent;
  color: #009643;
}

.btnSecondary {
  font-family: "Inter", sans-serif;
  background: #111;
  border: 1px solid #111;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
}

.btnSecondary:hover,
.btnSecondary:focus {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.readMore {
  color: #111;
  font-size: 14px;
}

.light-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
.light_bg:hover {
  background: #fff;
  border: 2px solid #fff;
  color: var(--primary_color);
}

.light-outline:hover {
  border: 2px solid #fff;
  background: #fff;
  color: var(--primary_color);
}
.section_space-1 {
  padding: 4rem 0;
}
.section_space-2 {
  padding: 3rem 0;
}
.section_space-odd-1 {
  padding: 4rem 0 11rem;
}
.header {
  width: 100%;
  padding: 0px 0px;
  position: relative;
  background: #fff;
  margin-bottom: 40px;
}
.header .container {
  padding: 15px 0px;
}
/* .header.fixedHeader {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 99;
  box-shadow: 0px 1px 16px #00000017;
} */
.header .container-fluid {
  position: relative;
}
.header .navBrand img {
  width: 150px;
}
.main_menunav {
  display: flex;
  justify-items: flex-end;
}
.main_menunav ul {
  margin: 0px;
  display: flex;
}
.main_menunav ul li {
  display: block;
  position: relative;
  padding: 1rem 0.5rem;
}
.main_menunav ul li a {
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 600;
  margin: 0px 5px;
  font-family: "Italiana", sans-serif;
}
.main_menunav ul li a:hover {
  color: #111;
}
.main_menunav ul li ul {
  background: #098d39;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  left: 0;
  z-index: 4;
  transition: all 0.5s ease-in-out;
}
.main_menunav ul li:hover > ul,
.main_menunav ul li ul:hover {
  visibility: visible;
  opacity: 1;

  margin-top: 0.5rem;
}
.main_menunav ul li ul li {
  clear: both;
  width: 100%;
  padding: 0.5rem 0.1rem;
}
.main_menunav ul li ul li a {
  display: block;
  font-size: 12px;
  white-space: nowrap;
  color: #fff;
}
.hero_section {
  padding: 10px 15px;
  position: relative;
}
.header .btnLogin {
  color: #4c546c;
  margin-right: 20px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}
.header .btnLogin .icon {
  margin-right: 4px;
  position: absolute;
  left: 0px;
  top: -3px;
}
.header .icon_search {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #ccc;
}

.hero_section .container {
  position: relative;
}

.site_search_panel {
  width: 100%;
  padding: 25px 0px;
  background: #fff;
  box-shadow: 0px 0px 14px rgb(67 67 68 / 15%);
  border-radius: 15px;
  position: relative;
  z-index: 5;
  margin-top: -120px;
  margin-bottom: 30px;
  display: flex;
  align-items: start;
}
.site_search_panel .panel_colmn {
  padding: 0px 25px;
  border-right: 1px solid #ccc;
}
.site_search_panel .location_col {
  flex: 0 0 21%;
  max-width: 21%;
}
.site_search_panel .type_prop-col {
  flex: 0 0 18%;
  max-width: 18%;
}

.site_search_panel .rooms_col {
  flex: 0 0 13%;
  max-width: 13%;
}
.site_search_panel .price_range {
  flex: 0 0 25%;
  max-width: 25%;
  border-right: 0px;
}
.site_search_panel .btnSearch {
  flex: 0 0 10%;
  max-width: 10%;
  text-align: center;
  border-right: 0px;
}
.site_search_panel .btnSearch .prop_btn-srch {
  width: 60px;
  height: 60px;
  background: var(--primary_color);
  border-radius: 10px;
  border: 0px;
  position: relative;
}
.btnSearch .prop_btn-srch::after {
  content: "";
  background: url(../images/search_icon-white.svg);
  position: absolute;
  width: 25px;
  height: 25px;
  top: 17px;
  left: 17px;
}
.count_container {
  display: flex;
}

.count_container .btnOpt {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}
.count_container input {
  width: 100%;
  text-align: center;
  background: transparent;
  border: 0px;
}

.site_search_panel .panel_colmn .title {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  display: block;
}
.site_search_panel .panel_colmn .title .pane_icon {
  position: absolute;
  left: 0px;
  top: -1px;
}
.site_search_panel .panel_colmn .city_field {
  width: 100%;
  border: 0px;
  outline: 0px;
}

.site_search_panel .panel_colmn .select_option {
  width: 100%;
  background: transparent;
  border: 0px;
  appearance: none;
  position: relative;
  background-image: url(../images/drop-down-arrow.png);
  background-position: calc(100% + 1px) center;

  background-repeat: no-repeat;
}
.price-range-slider {
  width: 100%;
  float: left;
}
.price-range-slider .range-value {
  margin: 0;
}
.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  font-size: 16px;
  font-weight: initial;
  box-shadow: none;
  border: none;
  margin: 0px 0 3px 0;
}
.price-range-slider .range-bar {
  border: none;
  background: #ccc;
  height: 3px;
  width: 96%;
  margin-left: 8px;
}
.price-range-slider .range-bar .ui-slider-range {
  background: var(--primary_color);
}
.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #fff;
  border: 2px solid var(--primary_color);
  height: 17px;
  width: 17px;
  top: -0.52em;
  cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
  background: var(--primary_color);
}
.search_wrap {
  padding: 10px;
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 14px rgba(255, 255, 255, 0.15);
  right: 15%;
  width: 400px;
  top: 95px;
  border: 1px solid #d5dbe1;
  z-index: 5;
  display: none;
  justify-content: space-between;
}
.search_wrap .input_search {
  flex: 0 0 80%;
  padding: 5px;
  border: 0px;
  outline: 0px;
}
.search_wrap .btnSearch {
  border: 0px;
  outline: 0px;
  background: transparent;
}
.landing_banner {
  position: relative;
}
.landing_banner .item {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.landing_banner .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
}
.landing_banner .banner_content {
  z-index: 5;
  position: relative;
}
.landing_banner .banner_content .sub_title {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
.landing_banner .banner_content .title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
}
.landing_banner .banner_content p {
  color: #fff;
}
.landing_banner .owl-next {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  display: block;
}
.landing_banner .owl-prev {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  display: block;
}
.inner_banner {
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  padding: 30px;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.inner_banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.35);
}

.inner_banner .title {
  font-size: 2.85rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}

ul.choose_list-item {
  width: 100%;
}
ul.choose_list-item li {
  color: #fff;
  padding: 5px 0px;
}
ul.site_breadcrumb {
  list-style: none;
  text-align: left;
  display: flex;
  padding: 0px;
  margin: 0px;
  justify-content: flex-start;
  align-items: center;
}
ul.site_breadcrumb li {
  padding-right: 10px;
  padding-left: 10px;
}
ul.site_breadcrumb li:first-child {
  padding-left: 0px;
}
ul.site_breadcrumb li,
ul.site_breadcrumb li a {
  font-size: 17px;
  font-family: "Inter";
  color: #fff;
  font-weight: 400;
  position: relative;
}
ul.site_breadcrumb li:not(:last-child):after {
  position: absolute;
  content: "/";
  right: -3px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.breadcrumb_banner ul.site_breadcrumb li,
.breadcrumb_banner ul.site_breadcrumb li a {
  color: #434a60;
}

ul.block_list-item-light {
  width: 100%;
}

ul.block_list-item-light li {
  padding: 5px 0px;
  color: #fff;
  position: relative;
  padding-left: 25px;
}
ul.block_list-item-light li::before {
  content: "";
  width: 8px;
  height: 14px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 4px;
  transform: rotate(45deg);
}

ul.block_list-item {
  width: 100%;
}

ul.block_list-item li {
  padding: 5px 0px 5px 25px !important;
  color: #111111;
  position: relative;

  font-size: 16px !important;
  font-weight: 400 !important;
}
ul.block_list-item li::before {
  content: "";
  width: 8px;
  height: 14px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  position: absolute;
  left: 4px;
  transform: rotate(45deg);
}
ul.group_banner-tag {
  display: flex;
  margin-top: 20px;
  gap: 15px;
}
ul.group_banner-tag li {
  padding: 10px 20px 10px 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: #fff;
  position: relative;
}
ul.group_banner-tag li .icon {
  position: absolute;
  top: 12px;
  left: 14px;
}
.pro_2-colmn {
  width: 100%;
  padding: 0px;
  border-radius: 15px;
  position: relative;
  margin: 15px 0px;
  overflow: hidden;
}
.pro_2-colmn .image-block {
  height: 250px;
}
.pro_2-colmn .image-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.pro_2-colmn .title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.pro_2-colmn p {
  color: #111;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}
.pro_2-colmn.bg_purple {
  background: #098d39;
}
.pro_2-colmn.bg_blue {
  background: #fff;
}
.pro_2-colmn .col_footer {
  position: relative;
  padding: 15px;
}
.pro_2-colmn .col_footer .col_icon {
  position: absolute;
  right: 0px;
  top: -35px;
}
.land_about-wrap {
  margin: 25px 0px;
}
.wrap_tag {
  background: #098d39;
  padding: 8px 25px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.land_about-wrap .title {
  font-size: 40px;
  font-weight: 600;
  color: #111111;
}

.card_list-service {
  width: 100%;
  margin: 8px 0px;
  position: relative;
  display: flex;
}
.card_list-service .icon {
  width: 60px;
  height: 60px;
  background: #000e2f;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
  display: block;
}
.card_list-service .title {
  font-size: 20px;
  font-family: "Inter";
  margin-bottom: 2px;
}
.card_list-service .card_content {
  padding-left: 20px;
}
.property_about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.property_about-grid .grid-item1 {
  grid-column: 1 / 2;
}

.property_about-grid .grid-item2 {
  grid-column: 2 / 3;
}

.property_about-grid .grid-item3 {
  grid-column: 1 / 3;
}
.property_about-grid .grid-item1 img,
.property_about-grid .grid-item2 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.grid-item3 {
  margin-top: 10px;
}
.property_about-grid .grid-item3 img,
.grid-item3 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.land_right_content {
  width: 100%;
  padding: 5.5rem 0;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
.land_right_content .container-fluid {
  padding: 0px;
}
.land_right_content .inner_wrap {
  padding: 4.5rem 8rem 4.5rem 2.5rem;
  background: #fff;
}
.land_right_content .inner_wrap .title {
  font-size: 40px;
  font-weight: 600;
}

.sell_deisplay-board {
  width: 100%;
  background-repeat: no-repeat;
  background-position: 0px -200px;
}

.video_media-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 580px;
}
.video_media-wrap iframe {
  width: 100%;
  height: 100%;
}
.property_onboard {
  position: relative;
  padding: 50px;
  background: #098d39;
  border-radius: 15px;
  margin-top: -250px;
  overflow: hidden;
}
.property_onboard .content_area .title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.property_onboard .image_wraper img {
  border-radius: 15px;
}
.property_onboard p {
  color: #fff;
}
.sell_pro-features {
  width: 100%;
  padding-top: 5.5rem;
}
.side_content-block .title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
.image_bulk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: end;
}
.image_bulk-grid .left-column,
.image_bulk-grid .right-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image_bulk-grid .left-column {
  flex: 1;
  max-width: 50%;
}
.image_bulk-grid .left-column .top_thumb {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: end;
}
.image_bulk-grid .left-column .top_thumb img {
  width: 60%;
  height: 150px;
  object-fit: cover;
}

.image_bulk-grid .right-column {
  flex: 1;
  max-width: 50%;
  max-height: 600px;
}
.image_bulk-grid .left-column img,
.image_bulk-grid .right-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.image_bulk-grid .right-column img {
  width: 100%;
  height: 600px;

  object-fit: cover;
}
.image_bulk-grid .item-large {
  flex-grow: 1;
}
.image_bulk-grid .item-small {
  flex: 1;
}
.site_footer {
  width: 100%;
  background-color: #1b1b1b;
  position: relative;
}
.footer_top p {
  color: #fff;
}
.footer_top {
  background-position: right;
  position: relative;
  padding: 60px 0px;
}

.footer_top .foot_col {
  padding: 60px 0px;
  position: relative;
}
.footer-logo {
  width: 100%;
}
.footer-logo img {
  max-width: 250px;
}
/* .footer_top .foot_col:first-child{
    content: "";
    width: 1px;
    height: auto;
    position: absolute;
    right: 0px;
    background: #858893;
} */
.foot_contact-card {
  width: 100%;
  margin: 8px 0px 20px;
  position: relative;
  display: flex;
}
.foot_contact-card .icon {
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border-radius: 10px;
  display: block;
}
.foot_contact-card .icon i {
  color: #fff;
  border: 1px solid #ffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  margin-right: 20px;
  margin-top: 8px;
}
.foot_contact-card .card_content {
  padding-left: 15px;
}
.foot_contact-card p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}
.foot_contact-card .title {
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter";
  margin-bottom: 2px;
  color: #fff;
}
ul.footer_social {
  width: 100%;
  padding: 0px;
  display: flex;
  margin-top: 10px;
  margin-bottom: 0px;
}
ul.footer_social li {
  margin-right: 20px;
}
ul.footer_social li a {
  color: #858893;
  font-size: 20px;
}
ul.footer_social li a:hover {
  color: #098d39;
}
.footer_newsletter .title {
  font-size: 28px;
  color: #fff;
}

.footer_bottom {
  width: 100%;
  padding: 10px 0px;
  background-color: #212020;
}

.footer_bottom p {
  font-size: 13px;
  color: #fff;
  text-align: right;
  margin: 0px;
}
ul.footer_nav {
  display: flex;
  flex-direction: column;
  margin: 0px 0px 0px 50px;
  gap: 10px;
}
ul.footer_nav li {
  margin-right: 30px;
}

ul.footer_nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.email-container {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 5px;
}
.email-container {
  width: 100%;
  display: flex;
}
.email-input {
  border: none;
  padding: 10px;
  flex-grow: 1;
  font-size: 16px;
  background-color: transparent;
  color: #fff;
  outline: none;
  border: 1px solid #858893;
  border-right: 0px;
  border-radius: 5px 0px 0px 5px;
  background-image: url(../images/mail_icon.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: 3%;
  padding-left: 54px;
}

.email-input::placeholder {
  color: #ccc;
}

.explore-button {
  background-color: var(--primary_color);
  border: 1px solid var(--primary_color);
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0px 5px 5px 0px;
  font-size: 16px;
  font-weight: 400;
}

.explore-button:hover {
  background-color: #7c45e1;
}
.section_title {
  margin-bottom: 30px;
}
.section_title .title {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}
.section_title p {
  font-size: 20px;
  font-weight: 400;
  color: #111;
}
.section_title .sub_text {
  font-size: 16px;
}

.property_card {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 10px #63656814;
  margin: 15px 0;
}
.property_card .propery_img {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  height: 250px;
}
.property_card .propery_img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.property_card .propery_img .status_tag {
  color: var(--primary_color);
  background: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  display: inline;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 500;
}
.property_card .propery_img .price_tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.property_card .propery_img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(25, 25, 25, 0.45) 100%
  );
}
.property_card .property_name,
.property_card .property_name a {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  color: #434a60;
}
.property_card .pro_address {
  position: relative;
  padding-left: 15px;
  font-size: 17px;
}
.property_card .pro_address .icon {
  position: absolute;
  top: 4px;
  left: 0px;
}

.review_video-pop {
  width: 100%;
  height: 300px;
  margin-bottom: 25px;
}
.review_video-pop img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}
ul.pro_feature {
  display: flex;
  gap: 20px;
}
ul.pro_feature li {
  color: #4c546c;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
}
ul.pro_feature li .icon img {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 2px;
  left: 0px;
}
.property_card .card_footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property_card .card_footer .expl_btn {
  font-family: "Inter", sans-serif;
  background: var(--primary_color);
  border: 2px solid transparent;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.property_card .card_footer .expl_btn:hover {
  border: 2px solid var(--primary_color);
  background: transparent;
  color: var(--primary_color);
}
.property_card .card_footer .btnWishlist {
  font-size: 25px;
  color: var(--primary_color);
  background: transparent;
}
.pro_listScroll .owl-dot span {
  background-color: #ddd7ee !important;
}
.pro_listScroll .owl-dot.active span {
  background-color: #009643 !important;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  color: #bab9d6;
}
.owl-nav .owl-prev {
  color: var(--primary_color);
}
.sort_by_featured select {
  border: 1px solid #e6e6e6;
  background: transparent;
  border-radius: 5px;
  padding: 12px;
  padding-right: 30px;
  min-height: 25px;
  min-width: 140px;
}
.cms_about_wrap .title {
  font-size: 40px;
  font-weight: 600;
}
.cms_about_wrap .img_float-wrap {
}

.cms_about_wrap .img_float-wrap img {
  border-radius: 20px;

  object-fit: cover;
}
.why_choose-card {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  margin: 15px 0px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.why_choose-card .title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.why_choose-card .card_body {
  flex: 1;
}
.why_choose-card .card_footer {
  border-top: 1px solid #ececec;
  padding-top: 10px;
}
.btn_more-arrow {
  display: inline-block;
  color: var(--primary_color);
  position: relative;
}
.btn_more-arrow:hover {
  color: var(--primary_color);
}

.btn_more-arrow:after {
  content: "";
  background: url(../images/arrow_purple.svg) no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 7px;
  right: -30px;
}

.bg_light-content {
  width: 100%;
  padding: 15px 0px;
  border-radius: 25px;
}

.faq_title {
  text-align: center;
}
.faq_title .title {
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}
.faq_title p {
  color: #111;
}
.faq_parent-wrap {
  width: 100%;
  margin: 0px 0px;
  padding: 10px 15px;
  /* border-bottom: 1px solid #ccc; */
  background: #fff;
  margin: 15px 0px;
  border-radius: 5px;
}

.faq_bg {
  background: #f8faff;
  border-radius: 10px;
  margin: 20px 0px;
  padding: 10px 20px;
  border: 0px;
}

.faq_parent-wrap .faq__head {
  padding: 10px 0px;
  position: relative;
  display: block;
  cursor: pointer;
}

.faq_parent-wrap .faq__head h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.faq__head .faq__arrow {
  content: "";
  width: 15px;
  height: 15px;
  border: none;
  background: url(../images/arrow_purple.svg) no-repeat;
  position: absolute;
  top: 14px;
  right: 0px;
  transform: rotate(81deg);
  transition: transform 0.5s;
}

.faq__head.active .faq__arrow {
  transform: rotate(360deg);
  top: 14px;
}

.faq_parent-wrap .faq__content_wrap {
  padding: 10px 0px;
  display: none;
}
.faq_parent-wrap .faq__content_wrap p {
  color: #111;
}

.col-thumb-block .title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}
.col-thumb-block p {
  color: #111;
  font-size: 18px;
}
ul.contactDetails {
  width: 100%;
  padding: 0;
  margin-top: 30px;
}

ul.contactDetails li {
  position: relative;
  padding: 15px 0 15px 50px;
}

ul.contactDetails li .icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 30px;
  text-align: center;

  position: absolute;
  top: 25px;
  left: 0;
  border-radius: 5px;
}
ul.contactDetails li .title {
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: #434a60;
  margin-bottom: 5px;
}
ul.contactDetails li .descrip,
ul.contactDetails li .descrip a {
  font-family: "Inter";
  font-size: 22px;
  color: #434a60;
}
.form_group {
  width: 100%;
  margin: 10px 0;
}
.form_group .form-control {
  font-family: "Inter";
  font-size: 18px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #bbbbbb;
  transition: ease-in-out 0.5s;
}
.form_group .text_area {
  height: 200px;
}

.breadcrumb_banner {
  width: 100%;
  padding: 40px 0px;
  background: #f8faff;
}
.prop_details-block {
  width: 100%;
  padding: 25px 0px;
}
.br-bottom {
  border-bottom: 1px solid #d1d1d1;
}
.prop_details-block .title {
  font-size: 28px;
  font-weight: 600;
  color: #434a60;
  margin-bottom: 15px;
}
ul.overview_list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -15px;
}
ul.overview_list li {
  flex: 0 0 33.33333%;
  padding: 15px 15px;
}
ul.overview_list li strong {
  font-weight: 500;
  font-size: 17px;
  color: #4c546c;
}
ul.overview_list li .overview_item {
  width: 100%;
  position: relative;
  padding-left: 35px;
  font-size: 22px;
  font-weight: 500;
  color: #434a60;
}
ul.overview_list li .overview_item .icon {
  position: absolute;
  left: 0px;
  top: -3px;
}
ul.overview_list li .overview_item .icon img {
  width: 30px;
  top: 8px;
}
.g-map_navigation,
.g-map_navigation:hover {
  padding: 5px 10px 5px 40px;
  background: var(--primary_color);
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  height: 32px;
}
.g-map_navigation .icon img {
  position: absolute;
  left: 10px;
  width: 20px;
}
ul.address_list-item {
  width: 100%;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  margin: 10px 0px 0px;
}
ul.address_list-item li {
  margin: 0px 0px 15px;
  color: #4c546c;
}
ul.address_list-item li strong {
  font-size: 18px;
  font-weight: 500;
}
ul.address_list-item li span {
  font-size: 16px;
  font-weight: 400;
}
.prop_details-block .map_overview {
  width: 100%;
  margin-top: 25px;
}
.features_inner-block {
  width: 100%;
  padding: 10px 0px 0px;
}
.features_inner-block .title {
  font-size: 20px;
  font-family: "Inter";
  color: #6238da;
  font-weight: 500;
}
ul.features_list-item {
  width: 100%;
  width: 100%;
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  margin: 0px;
}
ul.features_list-item li {
  margin: 0px 0px 15px;
  color: #4c546c;
  position: relative;
  padding-left: 36px;
}
ul.features_list-item li:before {
  content: "";
  position: absolute;
  background: url(../images/feature_list-tick.svg) no-repeat;
  width: 35px;
  height: 35px;
  background-size: 25px;
  left: 0px;

  top: 5px;
}
.prop_request-info {
  width: 100%;
  padding: 20px;
  background: #f8faff;
  border-radius: 10px;
}
.prop_request-info .title {
  font-size: 27px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
.prop_request-info .form_group {
  width: 100%;
  margin: 15px 0px;
}
.prop_request-info .form_group .form_field {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #aeb0b7;
  background: transparent;
  border-radius: 5px;
}
.prop_request-info .form_group .select_field {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #aeb0b7;
  background: transparent;
  border-radius: 5px;
}
.prop_request-info .form_group .text_area_field {
  width: 100%;
  height: 120px;
  padding: 10px 15px;
  border: 1px solid #aeb0b7;
  background: transparent;
  border-radius: 5px;
}
.select_check input {
  margin-right: 5px;
}
.select_check p {
  font-size: 14px;
}
.select_check p a {
  color: var(--primary_color);
}
.prop-details-top-wrap {
  width: 100%;
}
.pro-head .pro_title {
  font-size: 35px;
  font-weight: 600;
  color: #434a60;
}
.pro-head .pro_price {
  display: block;
  text-align: right;
  font-size: 26px;
  font-weight: 600;
  color: #6238da;
}
ul.prop_tag-list {
  display: flex;
  margin: 0px;
}

ul.prop_tag-list li {
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 13px;
}
ul.prop_tag-list li:first-child a {
  background: var(--primary_color);
}
ul.prop_tag-list li a {
  display: block;
  background: #434a60;
  padding: 5px 10px;
  color: #fff;
  border-radius: 3px;
}
ul.prop_share_social {
  display: flex;
  justify-content: flex-end;
}
ul.prop_share_social li {
  margin-left: 15px;
}
ul.prop_share_social li a {
  color: #858893;
}
ul.prop_share_social li a:hover {
  color: var(--primary_color);
}
.prop-details-top-wrap .pro-bottom .pro_address {
  font-family: "Inter";
  position: relative;
  padding-left: 15px;
  font-size: 16px;
}
.prop-details-top-wrap .pro-bottom .pro_address .icon {
  position: absolute;
  top: 0px;
  left: 0px;
}
.prop-details-top-wrap .pro-bottom .btnWishlist {
  font-size: 25px;
  color: var(--primary_color);
  float: right;
}
#big .item {
  color: #fff;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
}
#big .item img {
  height: 500px;
  object-fit: cover;
}
#thumbs .item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

/* accounts css */
/* 
.section_acc_dtls .lft_menu .navbar-expand-lg .navbar-nav {
    flex-direction: column ;
  }
  .section_acc_dtls .lft_menu .navbar-expand-lg .navbar-collapse{
    align-items: flex-start;
  } */
.section_acc_dtls .lft_menu .navbar-nav .nav-link {
  padding: 17px 12px;
  font-size: 17px;
  line-height: 15px;
  font-weight: 500;
  color: #434a60;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent;
  position: relative;
}
/* .section_acc_dtls .lft_menu .navbar-expand-lg{
    padding-bottom:0;
  } */
.section_acc_dtls .lft_menu .navbar-nav .nav-link span {
  margin-right: 10px;
}

/* .section_acc_dtls .lft_menu{
    padding-top:38px;
  } */
.section_acc_dtls .lft_menu .navbar-nav .nav-link.active,
.section_acc_dtls .lft_menu .navbar-nav .nav-link.active:hover,
.section_acc_dtls .lft_menu .navbar-nav .nav-link:hover {
  background-color: #f8faff;
  width: auto;
  border-radius: 6px;
}
.section_acc_dtls {
  padding: 38px 0 80px;
}
.section_acc_dtls .lft_menu .navbar-nav .nav-item:not(:first-child) {
  margin-top: 20px;
}

.acc_dtls_card {
  background-color: #ffffff;
  box-shadow: 1.2px 1.2px 14px 0 rgb(0, 0, 0, 0.14);
  border-radius: 6px;
  padding: 25px 30px 50px;
  margin-left: 95px;
}

.acc_dtls_card .section-title h4 {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 10px;
}

.section-title h4 {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 10px;
}

.acct_details .sub_title {
  font-size: 16px;
  font-weight: 400;
  color: #595c60;
}
/* .acc_dtls_card .dtls_Wrap .username,
  .acc_dtls_card .dtls_Wrap .emailaddress{
    margin-bottom:40px;
  } */
.acct_details p {
  font-size: 18px;
  line-height: 16px;
  color: #434a60;
  margin-top: 15px;
  margin-bottom: 40px;
}
.acc_dtls_card .acc_head_Wrap {
  display: flex;
  justify-content: space-between;
}
.acc_dtls_card .name_wrap {
  display: flex;
  gap: 0 138px;
}
.acc_dtls_card .name_wrap span p {
  margin-bottom: 0;
}
.acc_dtls_card .dtls_edit .btnPrimary {
  padding: 10px 20px;
}
.acc_dtls_card .dtls_edit span {
  padding-right: 10px;
}
.acc_dtls_card .dtls_edit .btnPrimary:hover span img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(100%) saturate(4113%)
    hue-rotate(252deg) brightness(89%) contrast(90%);
}
.user_dtls p {
  margin-bottom: 0;
}

/* mylistings */
.add_new {
  padding: 10px 20px;
}

.plus {
  padding-right: 3px;
}

.listingCard_row {
  background-color: #f8faff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 26px;
  position: relative;
}
.lstng_img img {
  border-radius: 10px;
  max-width: 240px;
  max-height: 211px;
  object-fit: cover;
}

.listing_card_body {
  padding-left: 33px;
  width: 100%;
}
.listing_card_body h3 {
  font-size: 22px;
  line-height: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
}
.listing_card_body .pro_address i {
  margin-right: 5px;
}

.listing_card_body .pro_address {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #434a60;
  margin-bottom: 12px;
}

.listing_overview li {
  flex: 0 0 25% !important;
  width: 25%;
}
.listing_overview li p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #858893;
}

.listing_overview .overview_item {
  padding-left: 0 !important;
  font-size: 18px !important;
  line-height: 16px;
}

.status span {
  font-size: 14px;
  line-height: 16px;
  color: #858893;
  font-weight: 500;
}

.status p {
  font-size: 18px;
  line-height: 16px;
  color: #0c9543;
  font-weight: 500;
  margin-left: 5px;
}

.rght_panel {
  margin-left: 30px;
}

.listing_drpdwn a::after {
  display: none;
}
.listing_drpdwn .dropdown-item {
  background-color: #f8faff;
  padding: 17px 12px;
  font-size: 17px;
  line-height: 15px;
  font-weight: 500;
  color: #434a60;
  display: flex;
  justify-content: center;
  align-items: center;
}
.listing_drpdwn ul {
  z-index: 1;
}

.owl-theme .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}
#big.owl-theme {
  position: relative;
}
#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
  background: #fff;
  width: 50px;
  line-height: 50px;
  height: 50px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
  border-radius: 50%;
  color: var(--primary_color);
}
#big.owl-theme .owl-prev {
  left: 10px;
}
#big.owl-theme .owl-next {
  right: 10px;
}
#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  background: #333;
}

.product_comn_car {
  background: #fff;
  border-radius: 15px;
}
.product_comn_car p {
  color: #111;
  font-size: 15px;
  font-weight: 400;
}
.product_comn_car .describe {
  width: 100%;
  padding: 15px;
  color: #111;
  height: 300px;
  position: relative;
}
.product_comn_car .describe iframe {
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.review_author {
  width: 100%;
  margin-bottom: 30px;
}
.review_author .author_thumb {
  width: 60px !important;
  height: 60px;
  float: left;
  margin-right: 20px;
  border-radius: 100%;
}
.author_info {
  padding-top: 5px;
}
.author_info h3 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0px;
}
ul.review_star {
  display: flex;
}
ul.review_star li {
  margin-right: 7px;
}
ul.review_star li img {
  width: 15px;
  height: 15px;
}
/* .legal_wrap-block {
  width: 100%;
  padding: 25px 0px;
}
.legal_wrap-block .title {
  font-size: 25px;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
} */
.legal_wrap-block h1 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 30px;
  color: #111;
}
.legal_wrap-block .h4 {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 1rem;
}
.legal_wrap-block h5 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}
ol.order-list li {
  font-size: 24px;
  font-weight: 600;
  padding: 15px 0px;
}

.legal_wrap-block .list-group-item {
  background: transparent;
  border: 0px;
}
.legal_wrap-block h2,
.legal_wrap-block h3,
.legal_wrap-block h4,
.legal_wrap-block h5 {
  font-family: "Inter";
  font-weight: 500;
}
.legal_wrap-block .mb-4 {
  margin-bottom: 3rem !important;
}
.legal_wrap-block .mt-4 {
  margin-top: 3rem !important;
}
.legal_wrap-block th {
  padding: 15px;
  font-weight: 500;
}
.legal_wrap-block td {
  font-size: 14px;
  padding: 15px;
}

.legal_wrap-block .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 18px;
}
ul.block_list-item li ol li::before {
  content: "";
  display: none;
}
@media (min-width: 1600px) {
  .pro_2-colmn {
    padding: 0px;
  }
}
@media (min-width: 1450px) {
  .header .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero_section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1366px) {
  .pl-2 {
    padding-left: 25px !important;
  }
  .pr-2 {
    padding-right: 25px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .add_new {
    padding: 10px;
  }
}

/* @media(max-width:1199PX){
    .add_new {
        padding: 8px;
        font-size:13px;
    }
    .section-title h4{
        font-size: 20px;
        margin-bottom: 10px;
    }
} */

/* @media(max-width:1199px){
    .acc_dtls_card{
     width:65%;
     flex:0 0 auto;
    }
} */

@media (max-width: 991px) {
  .acc_dtls_card {
    margin-top: 70px;
    margin-left: 0;
    /* width:48%; */
  }
  .acc_dtls_card .name_wrap {
    gap: 0 30px;
  }
  .acc_dtls_card .dtls_Wrap p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .add_new {
    padding: 10px;
    font-size: 13px;
  }
  .section-title h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section_acc_dtls .lft_menu .navbar-nav {
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 25px;
    justify-content: space-between;
    padding: 0 15px;
  }
  .section_acc_dtls .lft_menu .navbar-nav .nav-link {
    font-size: 0;
  }
  .rght_panel {
    margin-left: 0;
  }
  .section_acc_dtls .lft_menu .navbar-nav .nav-link span img {
    width: 30px;
  }
  .section_acc_dtls .lft_menu .navbar-nav .nav-link::before {
    background-color: #f8faff;
    position: absolute;
    content: "";
    top: -12px;
    left: -12px;

    opacity: 0;
    transition: all 400ms ease-in-out;
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  .section_acc_dtls .lft_menu .navbar-nav .nav-link.active::before,
  .section_acc_dtls .lft_menu .navbar-nav .nav-link:hover::before {
    opacity: 1;
  }
  .section_acc_dtls .lft_menu .navbar-nav .nav-link span {
    margin-right: 0;
    position: relative;
  }
}

@media (max-width: 767px) {
  .section_space-2 {
    padding: 1rem 0;
  }
  .btnLogin span {
    display: none;
  }
  .header .btnLogin .icon {
    top: -12px;
  }
  .header .icon_search {
    width: 40px;
  }
  .header .navBrand {
    margin-left: 15px;
  }
  .header .navBrand img {
    width: 110px;
  }
  .header .btnLogin {
    margin-right: 0px;
  }
  .btnListhome {
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    border-radius: 0px;
    z-index: 9;
    text-align: center;
  }
  p {
    font-size: 15px;
    line-height: 1.5;
  }
  .landing_banner {
    padding: 0px;
  }
  .landing_banner .banner_content {
    padding: 15px;
  }
  .landing_banner .banner_content .title {
    font-size: 40px;
  }
  .landing_banner .banner_content .sub_title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .banner_content .btn_group .btnPrimary {
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 14px;
  }
  .cms_about_wrap .img_float-wrap {
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .cms_about_wrap .img_float-wrap img {
    max-width: 100%;
    width: 100%;
  }
  .land_about-wrap .title {
    font-size: 35px;
  }
  .card_list-service .title {
    font-size: 18px;
  }
  ul.group_banner-tag {
    flex-direction: column;
  }
  .men_stand {
    display: none;
  }
  .section_space-odd-1 {
    padding: 4rem 0 12rem;
  }
  .property_onboard {
    padding: 30px 20px;
    margin-top: -200px;
  }
  .property_onboard .content_area .title {
    font-size: 30px;
  }
  .side_content-block {
    padding-top: 20px;
  }

  .side_content-block .title {
    font-size: 35px;
  }
  .land_right_content .inner_wrap {
    padding: 30px 15px;
  }
  .land_right_content .inner_wrap .title {
    font-size: 28px;
  }
  .section_title .title {
    font-size: 28px;
  }
  .bg_light-content {
    padding: 0px;
  }
  .image_wraper {
    margin-bottom: 20px;
  }
  .faq_title .title {
    font-size: 28px;
  }
  .faq_title {
    margin-bottom: 15px !important;
  }
  .faq_innter-thumb {
    padding-left: 0px;
  }
  .faq_parent-wrap .faq__head {
    padding: 10px 20px 10px 0px;
  }
  .faq__head .faq__arrow {
    right: 5px;
  }
  .image_bulk-grid .right-column img {
    height: auto;
  }
  .image_bulk-grid .right-column {
    max-height: auto;
  }
  .sell_pro-features {
    padding-top: 2.5rem;
  }

  .col-thumb-block {
    margin-top: 25px;
  }
  .img-lg-block {
    order: 1;
  }

  .content-lg-block {
    order: 2;
  }
  .section_space-1 {
    padding: 2rem 0;
  }
  .footer_top:after {
    background: transparent;
  }
  .footer_top {
    padding: 50px 0px;
  }
  .footer_top .foot_col {
    padding: 20px 0px;
  }
  .email-container {
    flex-direction: column;
  }
  .email-container .email-input {
    border-right: 1px solid #858893;
    margin-bottom: 10px;
    width: 100%;
  }
  .explore-button {
    width: 100%;
    border-radius: 5px;
  }
  ul.footer_nav {
    justify-content: center;
    margin: 10px 0px;
  }
  ul.footer_nav li {
    margin: 5px 5px;
  }
  .footer_bottom {
    padding: 15px 0px 70px;
  }
  .footer_bottom p {
    text-align: center;
    margin-top: 15px;
  }
  .acc_dtls_card {
    padding: 22px 15px 15px;
  }
  .listingCard_row {
    flex-wrap: wrap;
  }
  .lstng_img {
    width: 100%;
    position: relative;
  }
  .lstng_img img {
    max-width: none;
    max-height: none;
    margin-bottom: 20px;
    width: 100%;
  }
  .listing_card_body {
    padding-left: 0;
  }
  .listing_overview li {
    flex: 0 0 50% !important;
    width: 50%;
  }
  .rght_panel .row .col-6:last-child {
    display: flex;
    justify-content: flex-end;
  }
  .listing_drpdwn {
    position: absolute;
    right: 40px;
    top: 40px;
  }
  .listing_drpdwn .dropdown-item {
    padding: 8px 5px;
    font-size: 14px;
  }
  .listing_drpdwn a img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(98%) saturate(7472%)
      hue-rotate(20deg) brightness(75%) contrast(99%);
  }
  ul.footer_social {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cms_about_wrap .img_float-wrap {
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .cms_about_wrap .img_float-wrap img {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hamburger {
    color: #009643;
    font-size: 1.45rem;
    margin-right: 10px;
    display: block;
    position: absolute;
    right: 0px;
  }
  .main_menunav {
    display: block;
    width: 300px;
    position: fixed;
    background-color: #fff;
    height: 100%;
    top: 0px;
    z-index: 10;
    left: -300px;
    transition: all ease-in 0.5s;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 0px 0px 14px #c9ccd0;
  }
  .btnClose {
    color: var(--title-color);
    font-size: 2rem;
    float: right;
    margin-right: 10px;
  }
  .main_menunav ul {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
  .main_menunav ul li {
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid #eef3f9;
  }
  .main_menunav ul li a {
    font-size: 18px;
    margin: 0px 20px;
  }
  .main_menunav.visible {
    left: 0px;
  }
  .d-mobile {
    display: none;
  }
  .search_wrap {
    padding: 10px;
    right: 0px;
    width: 95%;
    margin: 0px 10px;
    top: 72px;
    border: 1px solid #d5dbe1;
    z-index: 5;
    /* display: none; */
    justify-content: space-between;
  }

  .header {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .d-desktop {
    display: none;
  }

  .btnClose,
  .hamburger {
    display: none;
  }

  .contact_detail-row {
    padding-right: 100px;
  }
}

@media (min-width: 1260px) and (max-width: 1400px) {
  .header .container {
    max-width: 100%;
    padding: 15px 15px;
  }
}
