@import url("https://fonts.googleapis.com/css2?family=Baumans&family=Gayathri:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Federo&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

:root {
  --primary-black: #000000;
  --primary-white: #ffffff;
  --dark-gray: rgb(39, 39, 39);
  --medium-gray: rgb(64, 64, 64);
  --secondary-gray: #404040;
  --light-blue: #00b0f0;
  --medium-blue: #0066ff;
  --link-color: #0057da;
  --bright-pink: #ff4b87;
}

body {
  background-color: var(--primary-white);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header Style starts here */
.header {
  width: 100%;
  height: 90px;
  padding: 0 8%;
  background-color: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in;
  position: relative;
}

.logo {
  width: 135px;
  height: auto;
  cursor: pointer;
}

.header_text {
  font-size: 15px;
  font-weight: 300;
  color: var(--primary-white);
  text-align: right;
  line-height: 20px;
}

.header_text .blue {
  color: var(--light-blue);
  font-weight: 500;
}

.header_text .pink {
  color: var(--bright-pink);
  font-weight: 500;
}

@media only screen and (max-width: 760px) {
  .header {
    height: 70px;
    padding: 0 5%;
  }

  .logo {
    width: 120px;
  }

  .header_text {
    font-size: 13px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 550px) {
  .header {
    min-height: 60px;
    height: auto;
  }

  .logo {
    width: 110px;
  }

  .header_text {
    font-size: 12px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 320px) {
  .header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.125rem;
    padding: 4%;
  }
  .header_text {
    text-align: left;
    font-size: 10px;
    line-height: 12px;
  }
}
/* Header Style ends here */

/* Homepage-Header Style starts here */
.home-header {
  width: 100%;
  height: 82px;
  background-color: #262626;
  transition: all 0.3s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.home_btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #e74a7f;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.home_btn img {
  width: 20px;
}
.home_btn:hover {
  background-color: #d8366c;
}

.logo-text {
  color: #00b0f0;
  font-weight: 400;
  font-size: 1.675rem;
  /* font-family: "Bricolage Grotesque", sans-serif; */
  font-family: "Baumans", system-ui;
}

.logo-text .pink {
  color: #ff6699;
  /* font-family: "Bricolage Grotesque", sans-serif; */
  font-family: "Baumans", system-ui;
}

.logo-text .white {
  color: #d8d8d8;
  font-size: 1.25rem;
  /* font-family: "Bricolage Grotesque", sans-serif; */
  font-family: "Baumans", system-ui;
}

.home-header_para {
  color: #bfbfbf;
  font-size: 13px;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  font-family: "Gayathri", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

@media only screen and (max-width: 760px) {
  .home-header_para {
    font-size: 13px;
  }
}
@media only screen and (max-width: 550px) {
  .home_btn {
    position: absolute;
    top: 10px;
    left: 14px;
    place-items: center;
  }
  .home-header_para {
    font-size: 12px;
  }
}

/* Homepage-Header Style ends here */

/* Homepage-SubHeader Style starts here */
.sub_header {
  margin-top: 82px;
  width: 100;
  height: auto;
  background-color: #3f3f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3%;
  transition: all 0.3s ease-in;
}

.sub_header ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.sub_header ul li {
  font-size: 16px;
  font-weight: 400;
  color: #d8d8d8;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.sub_header ul li:hover {
  color: #00b0f0;
}

@media only screen and (max-width: 991px) {
  .sub_header ul {
    gap: 2rem;
    row-gap: 1.25rem;
  }
}

@media only screen and (max-width: 600px) {
  .sub_header {
    padding: 1rem 3%;
  }

  .sub_header ul {
    row-gap: 1rem;
  }

  .sub_header ul li {
    font-size: 15px;
  }
}

@media only screen and (max-width: 300px) {
  .sub_header ul li {
    font-size: 14px;
  }
}

/* Homepage-SubHeader Style ends here */

/* Homepage-Hero Style starts here */
.home-hero {
  width: 100%;
  height: auto;
  overflow: hidden;
  max-height: 80vh;
}

.home-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Homepage-Hero Style ends here */

/* Homepage-Properties Style starts here */
.properties {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.properties_heading_container {
  width: 100%;
  padding: 1.5rem 10px;
  background-color: #f2f2f2;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
}
.properties_heading {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-black);
}

.properties_container {
  width: 100%;
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5rem;
  padding: 4rem 8%;
}

.property_card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.property_detils {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.card_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-black);
}

.card_second_title {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 600;
  color: var(--light-blue);
}

.card_second_title .pink {
  color: var(--bright-pink);
}

.divider-line {
  color: var(--primary-black);
  font-weight: 400;
}

.other_detils {
  margin-top: 3.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.other_detils li {
  font-size: 17px;
  font-weight: 400;
  color: #262626;
}

.other_detils li .blue:hover {
  color: var(--light-blue);
  transition: all 0.2s ease;
}

.other_detils li .pink:hover {
  color: var(--bright-pink);
  transition: all 0.2s ease;
}

.other_detils li .light_blue {
  color: #448888;
}

.other_detils li:last-child {
  margin-top: 0.55rem;
  font-weight: 400;
}

.other_detils li:last-child.blue {
  margin-top: 3rem;
  color: var(--medium-blue);
}

.property_image_container {
  width: 100%;
  /* width: 480px; */
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.property_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.second_card {
  flex-direction: row-reverse;
}

.second_card .other_detils,
.second_card .property_detils {
  align-items: flex-start;
}

@media only screen and (max-width: 992px) {
  .properties_heading {
    font-size: 22px;
    margin: 0.75rem 0;
  }

  .properties_container {
    gap: 3rem;
  }

  .property_card {
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
  }

  .property_image_container {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
  }

  .card_title {
    font-size: 20px;
  }

  .card_second_title {
    font-size: 19px;
  }

  .other_detils {
    margin-top: 1.85rem;
  }

  .other_detils li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1100px) {
  .properties_heading {
    font-size: 20px;
    margin: 0.65rem 0;
    text-align: center;
  }

  .properties_container {
    gap: 2.85rem;
    padding: 3rem 8%;
  }

  .property_detils {
    align-items: flex-start;
  }
  .property_card {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .card_title {
    font-size: 18px;
  }

  .card_second_title {
    font-size: 17px;
  }

  .other_detils {
    margin-top: 2rem;
    align-items: flex-start;
  }

  .other_detils li {
    font-size: 14px;
  }

  .other_detils li:last-child.blue {
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 400px) {
  .properties_container {
    padding: 4rem 5%;
  }
  .properties_heading {
    font-size: 18px;
  }

  .property_card {
    gap: 0.875rem;
  }

  .card_title {
    font-size: 16px;
  }

  .card_second_title {
    font-size: 15px;
  }

  .other_detils {
    margin-top: 0.85rem;
  }

  .other_detils li {
    font-size: 12px;
  }
}

/* Homepage-Tagline Style starts here */
.tagline {
  margin-top: 1rem;
  width: 100%;
}

.tagline_container {
  width: 100%;
  display: grid;
  grid-template-columns: 170px auto 170px;
  background-color: #262626;
  min-height: 100px;
}

.tagline_side_part {
  background-color: #3f3f3f;
  color: #ff6699;
  font-size: 16px;
  font-weight: 600;
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.tagline_center_part {
  color: var(--light-blue);
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 1rem 10px;
}

.tagline_center_part .pink {
  color: var(--bright-pink);
}

.tagline_center_part .brown {
  color: #bfbfbf;
  font-size: 15px;
}

@media only screen and (max-width: 790px) {
  .tagline {
    /* margin-top: 1.25rem; */
  }

  .tagline_container {
    grid-template-columns: auto;
  }

  .tagline_side_part {
    font-size: 14px;
    padding: 0.875rem 0;
  }

  .tagline_center_part {
    font-size: 16px;
    padding: 1rem 0;
  }
}

/* Homepage-Tagline Style ends here */

/* Homepage-Footer Style starts here */

footer {
  width: 100%;
  padding-bottom: 1.65rem;
  /* background-color: #7f7f7f; */
  background-color: #5a5a5a;
}

.footer_container {
  margin-top: 1.65rem;
  width: 100%;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  background-color: #262626;
}

.footer_side_part {
  background-color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-white);
}

.footer_side_part img {
  width: 28px;
}

.footer_center_part_container {
  width: 100%;
  display: flex;
  gap: 3px;
}

.footer_center_part {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #3f3f3f;
  padding: 2.5rem 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--primary-white);
}

.footer_center_part.contacts {
  text-align: right;
  align-items: flex-end;
  justify-content: flex-end;
}

.footer_center_part .link:hover {
  color: #0373e2;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 1010px) {
  footer {
    margin-top: 1.25rem;
  }

  .footer_container {
    grid-template-columns: auto;
  }

  .footer_side_part {
    padding: 1rem;
  }

  .footer_center_part {
    padding: 1.5rem;
    line-height: 28px;
  }

  .footer_divider {
    height: 0.2rem;
  }

  .footer_center_part.policy {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 840px) {
  .footer_center_part_container {
    flex-direction: column;
  }
  .footer_center_part.contacts {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 400px) {
  .footer_side_part {
    font-size: 16px;
    gap: 1rem;
  }

  .footer_side_part img {
    width: 25px;
  }

  .footer_center_part {
    padding: 1rem;
    font-size: 15px;
    line-height: 26px;
  }
}

/* Homepage-Footer Style ends here */

/* Copyright Style starts here */
.copyright {
  width: 100%;
}

.copyright_container {
  width: 100%;
  background-color: var(--primary-black);
  background-color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3%;
}

.copyright_container.home {
  gap: 1rem;
  flex-wrap: wrap;
}

.copyright_text {
  font-size: 15px;
  font-weight: 400;
  color: #bfbfbf;
}

.copyright_text .blue {
  color: var(--light-blue);
}

.copyright_text .pink {
  color: var(--bright-pink);
}

.copyright_text .yellow {
  color: #cd6200;
}

@media only screen and (max-width: 790px) {
  .copyright_text {
    font-size: 13px;
  }
}

@media only screen and (max-width: 550px) {
  .copyright_container {
    padding: 1.25rem 3%;
  }

  .copyright_text {
    font-size: 12px;
  }
}

/* Copyright Style ends here */

/* *******************************************************************************************************/

/*------------- property view page styles starts here ---------- */

.home-header.property_view_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 82px;
  height: fit-content;
  padding-bottom: 10px;
  padding-top: 10px;
}

.property_view_main {
  margin-top: 82px;
}

.property_view_top_section_label {
  background-color: #ff6699;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-white);
  border-radius: 2px;
}

.property_view_top_section_search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.property_view_search_select {
  width: 150px;
  height: 40px;
  font-size: 1rem;
  outline: none;
  border: none;
  background-color: white;
  border-right: 8px solid transparent;
  padding: 0 10px;
}

.property_view_link_text {
  color: inherit;
  transition: all 0.3s ease;
}

.property_view_link_text:hover {
  color: #0000ff;
}

.properties_view_divider {
  margin-top: 1rem;
  width: 100%;
  height: 2rem;
  background-color: #a5a5a5;
}

.building_list_container {
  width: 100%;
  background-color: var(--primary-white);
}

.building_list_heading {
  width: 100%;
  padding: 1.5rem 0;
  background-color: #f2f2f2;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-black);
}

.building_list_wrapper {
  width: 100%;
  margin-top: 3.25rem;
  display: grid;
  place-items: center;
  padding: 0 8% 1.5rem 8%;
}
.building_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.building_list_card {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-black);
  background-color: #c9c9c9;
}
.building_list_card:nth-child(even) {
  background-color: #e7e7e7;
}

.building_list_card .red {
  color: red;
}

.properties_view_link_wrapper {
  width: 100%;
  display: grid;
  place-items: center;
}

.properties_view_link_text {
  color: blue;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.properties_view_link_text:hover {
  background-color: #dae5f5;
}

.properties_brokers_container {
  width: 100%;
  background-color: #a5a5a5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.properties_brokers_container .cards_wrapper {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.properties_brokers_container .cards_wrapper .properties_title_container {
  padding: 0.65rem 5%;
  width: 100%;
  background-color: #f2f2f2;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
}

.properties_brokers_container .cards_wrapper .properties_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-black);
}

.properties_brokers_container .cards_wrapper .pink {
  color: #ff6699;
  font-weight: 700;
}

.properties_brokers_container .cards_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 400px;
  margin-right: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.properties_brokers_container .cards_container.second {
  margin-right: 0;
  margin-left: 2rem;
}

.brokers_list_card {
  width: 100%;
  background-color: var(--primary-white);
  border: 0.5px solid #e6e3e3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.brokers_list_card_title {
  width: 100%;
  min-height: 45px;
  padding: 5px;
  display: grid;
  place-items: center;
  background-color: #595959;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-white);
}

.brokers_list_card_body {
  width: 100%;
  padding: 1rem;
  display: grid;
  place-items: center;
}
.brokers_list_card_body_img {
  width: auto;
  max-width: 22rem;
  height: 100px;
  object-fit: contain;
}

.brokers_list_card_footer {
  width: 100%;
  min-height: 45px;
  padding: 5px;
  display: grid;
  place-items: center;
  background-color: #f2f2f2;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #0c0c0c;
}
.building_list_paragraph_container {
  width: 100%;
  display: grid;
  place-items: center;
  background-color: transparent;
  padding: 2.5rem 0;
}
.building_list_paragraph {
  width: 100%;
  max-width: 53rem;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #0c0c0c;
}

@media only screen and (max-width: 853px) {
  .home-header.property_view_header {
    position: static;
  }

  .property_view_main {
    margin-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .property_view_top_section_label {
    font-size: 13px;
  }
  .building_list_heading {
    padding: 1.5rem;
    font-size: 22px;
  }
  .building_list_wrapper {
    margin-top: 3rem;
  }
  .building_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .building_list_card {
    height: 55px;
    font-size: 15px;
  }
  .properties_brokers_container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .properties_brokers_container .cards_wrapper .properties_title {
    font-size: 22px;
  }
  .properties_brokers_container .cards_container {
    margin-right: 0;
    padding: 0 5%;
  }
  .properties_brokers_container .cards_container.second {
    margin-left: 0;
  }
  .brokers_list_card_title {
    font-size: 18px;
    min-height: 40px;
  }
  .brokers_list_card_body_img {
    max-width: 20rem;
    height: 90px;
  }
  .brokers_list_card_footer {
    font-size: 14px;
    min-height: 40px;
  }
  .building_list_paragraph_container {
    padding: 1rem 0;
  }
  .building_list_paragraph {
    font-size: 14px;
  }
}

@media only screen and (max-width: 760px) {
  .property_view_top_section {
    padding: 1rem 5%;
  }
  .property_view_top_section_search {
    width: 100%;
    flex: auto;
  }
  .property_view_search_select {
    height: 40px;
    border-bottom: 1px solid #bbb9b9;
  }
  .property_view_search_select:last-child {
    border-bottom: none !important;
  }
}

@media only screen and (max-width: 660px) {
  .property_view_top_section_search {
    flex-wrap: wrap;
  }
  .property_view_top_section_label {
    font-size: 13px;
  }
  .property_view_top_section_select {
    padding: 0 0.8em;
    font-size: 14px;
  }
  .property_view_top_section_select_container {
    width: 100%;
    max-width: 17em;
    height: 2.25em;
    line-height: 2.25;
  }
  .property_view_top_section_select_container::after {
    padding: 0 0.65em;
  }

  .building_list_heading {
    padding: 1rem;
    font-size: 20px;
  }
  .building_list_wrapper {
    margin-top: 2.65rem;
  }
  .building_list {
    grid-template-columns: 1fr;
  }
  .building_list_card {
    font-size: 14px;
  }

  .brokers_list_card_title {
    font-size: 18px;
    min-height: 40px;
  }

  .brokers_list_card_body_img {
    width: 100%;
    max-width: 18rem;
    height: 110px;
  }

  .brokers_list_card_footer {
    font-size: 14px;
    min-height: 35px;
  }

  .building_list_paragraph_container {
    padding: 2rem 1rem;
  }
  .building_list_paragraph {
    font-size: 16px;
  }
}

@media only screen and (max-width: 400px) {
  .building_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .building_list_wrapper {
    width: 100%;
    margin-top: 3.25rem;
    display: grid;
    place-items: center;
    padding: 0 5% 1.5rem 5%;
  }

  .brokers_list_card_title {
    font-size: 17px;
    min-height: 38px;
  }
  .brokers_list_card_body_img {
    height: 100px;
  }
  .brokers_list_card_footer {
    font-size: 13px;
    min-height: 32px;
  }

  .building_list_paragraph {
    font-size: 15px;
  }
}

/*------------- property view page styles ends here ---------- */

/* *******************************************************************************************************/

/* property-details page Style starts here */
.home-header.property_details_main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 82px;
  height: fit-content;
  padding-bottom: 10px;
  padding-top: 10px;
}
.property_details_view_main {
  margin-top: 82px;
}
.property_details_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-left: 0;
  padding-left: 0;
}
.property_details_header_label {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-white);
  margin-right: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.property_details_header_form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-left: 0;
}
.property_details_header_form .custom-dropdown {
  height: auto;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.property_details_header_filter_button {
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  padding: 0.4rem 1rem;
  background-color: #0066ff;
  height: auto;
  min-height: 32px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property_details_header_filter_button:hover {
  background-color: #0052cc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.property_details_header_clear_filter {
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  cursor: pointer;
  padding: 0.4rem 1rem;
  background-color: #f7f20e;
  height: auto;
  min-height: 32px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property_details_header_clear_filter:hover {
  background-color: #e6d90c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* custom select style starts here */
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.custom_select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #5a5a5a;
  color: var(--primary-white);
  padding: 8px 15px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
}
.select-styled.active {
  background-color: #0066ff;
  color: #f7f20e;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}

.select-styled:active:after,
.select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--primary-white);
  color: var(--primary-black);
  min-width: 100%;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border: 1px solid #e1e1e1;
  transition: all 0.15s ease-in;
  white-space: nowrap;
}

.select-options li:hover,
.select-options li.is-selected {
  color: var(--light-blue);
  background: var(--primary-white);
}

.select-options li[rel="hide"] {
  display: none;
}
/* custom select style ends here */

.property_details_main_container {
  width: 100%;
  background-color: var(--primary-white);
  padding: 5rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.property_details_card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.property_details_card_first_section {
  width: 100%;
  max-width: 22rem;
}
.property_details_card_first_section_title {
  width: 100%;
  min-height: 80px;
  padding: 5px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  display: grid;
  place-items: center;
  color: var(--primary-white);
  background-color: var(--secondary-gray);
}

.property_details_card_first_section_title .bold {
  font-weight: 700;
}

.property_details_card_first_section_image_wrapper {
  width: 100%;
  /* height: 270px; */
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property_details_card_first_section_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property_details_card_third_section_img_wrapper img {
  max-width: 150px;
  aspect-ratio: 1/1;
}

.property_details_card_first_permit_no {
  width: 100%;
  min-height: 45px;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-white);
  background-color: #808080;
  display: grid;
  place-items: center;
}
.property_details_card_first_listing_no {
  width: 100%;
  min-height: 42px;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-white);
  background-color: var(--secondary-gray);
  display: grid;
  place-items: center;
}

.property_details_card_second_section {
  width: 100%;
  max-width: 500px;
}

.property_details_card_second_section_sub_details_container {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
}
.property_details_card_second_section_sub_details_container li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-black);
  border-bottom: 0.5px solid #b9b9b9;
  min-height: 40px;
  padding: 5px 0;
}

.property_details_card_second_section_sub_details_container li p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.property_details_card_second_section_sub_details_container li p img {
  max-width: 35px;
  max-height: 30px;
}
.property_details_card_second_section_sub_details_container
  li
  p:nth-child(even) {
  justify-content: flex-end;
  text-align: right;
}
.property_details_card_second_section_description_container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 70px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-black);
  text-align: center;
  padding: 0 1em;
}
.property_details_card_second_section_description_container p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.property_details_card_second_section_link_container {
  width: 100%;
  min-height: 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #0066ff;
  background-color: #e9e9e9;
  display: grid;
  place-items: center;
  padding: 5px;
}

.property_details_card_third_section {
  width: 100%;
  max-width: 13rem;
}
.property_details_card_third_section_name {
  width: 100%;
  min-height: 80px;
  padding: 5px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  color: var(--primary-white);
  background-color: var(--secondary-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.property_details_card_third_section_img_wrapper {
  width: 100%;
  height: 100%;
  height: 215px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: #d8d8d8;
}
.property_details_card_third_section_button_container {
  width: 100%;
  display: grid;
  place-items: center;
  background-color: #808080;
  min-height: 55px;
}
.property_details_card_third_section_button {
  padding: 0.55rem 1.25rem;
  border: none;
  cursor: pointer;
  background-color: #0b66ef;
  font-size: 14px;
  font-weight: 500;
  color: #faff00;
  box-shadow: 1px 1px 7px 0px #00000033;
}
.property_details_card_third_section_text_container {
  width: 100%;
  display: grid;
  place-items: center;
  background-color: var(--secondary-gray);
  min-height: 80px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--primary-white);
}
.property_details_pagination_container {
  width: 100%;
  background-color: #f2f2f2;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.property_details_pagination_container p {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #646464;
}

/* pagination styles starts here */
ul.pagination-items {
  list-style: none;
}

ul.pagination-items li {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 2px;
  cursor: pointer;
  user-select: none;
  color: var(--primary-black);
  font-size: 1.125em;
}

li.pagination-item.active {
  color: var(--bright-pink);
  cursor: default;
}

li.disabled-item {
  opacity: 0.4;
  pointer-events: none;
}
/* pagination styles ends here */

@media only screen and (max-width: 1228px) {
  .property_details_view_main {
    margin-top: 102px;
  }
}
@media only screen and (max-width: 1100px) {
  .property_details_card {
    flex-direction: column;
  }
  .property_details_card_first_section {
    max-width: 100%;
  }
  .property_details_card_second_section {
    max-width: 100%;
  }
  .property_details_card_third_section {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1065px) {
  .property_details_view_main {
    margin-top: 0;
  }
  .home-header.property_details_header {
    position: static;
  }
}

@media only screen and (max-width: 991px) {
  .property_details_main_container {
    padding: 4rem 5%;
    gap: 4rem;
  }
  .property_details_card_first_section_title {
    min-height: 35px;
    font-size: 16px;
  }
  .property_details_card_first_section_image_wrapper {
    width: 100%;
    height: 280px;
  }
  .property_details_card_first_permit_no {
    min-height: 35px;
    font-size: 14px;
  }
  .property_details_card_first_listing_no {
    min-height: 35px;
    font-size: 14px;
  }

  .property_details_card_second_section_sub_details_container li {
    font-size: 14px;
    min-height: 35px;
    padding: 5px 1.25rem;
  }
  .property_details_card_second_section_sub_details_container li p img {
    max-width: 30px;
    max-height: 25px;
  }
  .property_details_card_second_section_description_container {
    height: 65px;
    font-size: 14px;
    line-height: 20px;
    padding: 0.7rem 0.85rem;
  }
  .property_details_card_second_section_link_container {
    min-height: 35px;
    font-size: 14px;
  }
  .property_details_card_third_section_name {
    width: 100%;
    min-height: 40px;
    font-size: 19px;
    letter-spacing: 0.5px;
  }
  .property_details_card_third_section_img_wrapper {
    height: 255px;
  }
  .property_details_card_third_section_button_container {
    width: 100%;
    display: grid;
    place-items: center;
    background-color: #808080;
    min-height: 45px;
  }
  .property_details_card_third_section_button {
    padding: 0.45rem 1rem;
    font-size: 12px;
  }
  .property_details_card_third_section_text_container {
    min-height: 45px;
    font-size: 17px;
  }
  .property_details_pagination_container p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .property_details_card {
    justify-content: flex-start;
  }
  .property_details_card_first_section_image_wrapper {
    width: 100%;
    height: 240px;
  }
  .property_details_card_third_section_img_wrapper {
    height: 215px;
  }
  .property_details_pagination_container p {
    font-size: 19px;
  }
}

@media only screen and (max-width: 560px) {
  /* custom select style starts here */
  .custom_select {
    font-size: 14px;
    min-width: 115px;
    height: 35px;
  }
  .select-styled {
    padding: 6px 10px;
  }
  .select-styled:after {
    top: 13px;
    right: 8px;
  }
  .select-styled:active:after,
  .select-styled.active:after {
    top: 6px;
  }
  .select-options li {
    padding: 10px 0;
  }
  /* custom select style ends here */

  .property_details_main_container {
    padding: 3rem 5%;
  }
  .property_details_card_second_section_sub_details_container li {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
  .property_details_card_second_section_sub_details_container li p img {
    max-width: 25px;
    max-height: 20px;
  }
  .property_details_card_second_section_sub_details_container
    li
    p:nth-child(even) {
    flex-direction: row-reverse;
  }
  .property_details_card_second_section_description_container {
    min-height: 70px;
    height: auto;
  }
  .property_details_pagination_container p {
    font-size: 18px;
  }
}

/* property-details page Style ends here */

/* *******************************************************************************************************/

/* Areawise-List page Style starts here */
.home-header.areawise_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.areawise-sortby-container {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.areawise-sortby {
  font-size: 18px;
  font-weight: 600;
  color: #d8d8d8;
}
.areawise-sortby-A-Z {
  background-color: #ff75ad;
  color: white;
  padding: 5px 40px;
  align-content: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.areawise-sortby-0-9 {
  background-color: #00a1da;
  color: white;
  padding: 5px 40px;
  align-content: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.areawise-list-heading-container {
  margin-top: 82px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 3%;
  background-color: #f2f2f2;
}
.areawise-list-heading {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-black);
  text-align: center;
}
.areawise_lists_main {
  width: 100%;
  background-color: #a5a5a5;
  padding: 2rem 5%;
}
.areawise_list_card_wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.areawise_list_card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem;
  background-color: white;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s ease;
}
.areawise_list_card:nth-child(even) {
  background-color: #f2f2f2;
}

.areawise_list_card .blue:hover {
  color: #0066ff;
  transition: all 0.3s ease;
}
.areawise_list_card .pink:hover {
  color: #ff5399;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 600px) {
  .areawise-sortby-container {
    gap: 10px;
  }
  .areawise-sortby {
    font-size: 16px;
  }
  .areawise-sortby-A-Z {
    padding: 5px 20px;
    font-size: 16px;
  }
  .areawise-sortby-0-9 {
    padding: 5px 20px;
    font-size: 16px;
  }
  .areawise-list-heading {
    font-size: 20px;
  }
  .areawise_list_card {
    font-size: 16px;
  }
}

/* Areawise-List page Style ends here */

/* ****************************************************************************************************************** */

/* Property-listing page Style starts here */

/* ****************************************************************************************************************** */

.home-header.property_listing_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 82px;
  height: fit-content;
  padding-bottom: 10px;
  padding-top: 10px;
}

.property_list_main {
  margin-top: 82px;
}

.property_list_container {
  width: 100%;
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5rem;
  padding: 2rem 2%;
}

.property_list_card {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.property_list_images {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.property_list_image_wrapper {
  width: 100%;
  padding: 2rem;
  background-color: #f2f2f2;
  border: 1px solid #c9c8c8;
  border-bottom: none;
}

.property_list_image_wrapper:nth-child(even) {
  background-color: #d8d8d8;
}

.property_list_image_wrapper.last {
  border-bottom: 1px solid #c9c8c8;
}

.property_list_detils {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.property_list_image {
  width: 100%;
  max-width: 36rem;
  height: 21.585rem;
  /* aspect-ratio: 16/9; */
  object-fit: cover;
}
.property_list_more_photos_text {
  margin-top: 1rem;
  width: 100%;
  min-height: 2.5rem;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--bright-pink);
  cursor: pointer;
}

.property_list_card_title {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-white);
  background-color: #595959;
  padding: 5px;
  text-align: center;
  display: grid;
  place-items: center;
  min-height: 3.5rem;
}
.property_list_card_details {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}
.property_list_left {
  padding: 5px;
}

.signature_residence {
  font-size: 18px;
  font-weight: 500;
  line-height: 15px;
}
.property_list_card_second_section_details_container {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.property_list_card_second_section_details_container li {
  width: 100%;
  min-height: 40px;
  padding: 8px 60px;
  font-size: 16px;
  font-weight: 500;
  display: grid;
  color: var(--primary-black);
  border-bottom: 0.5px solid #b9b9b9;
}

.property_details_card_second_section_sub_details_container li p {
  white-space: normal;
  word-wrap: break-word;
}
.property_details_sub_details {
  height: 90px;
}

.property_details_sub_details p {
  -webkit-line-clamp: 3;
}

.property_list_card_sub_title {
  width: 100%;
  text-align: left;
  min-height: 3rem;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-white);
  background-color: #595959;
  padding: 5px 1rem 5px 2rem;
}
.property_details_card_second_section_sub_details_container li:last-child {
  border-bottom: none;
}

.amenities-row {
  justify-content: space-between;
  gap: 0.5rem;
  padding: 5px 2rem;
}

.property_list_card_broker_detils_container {
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.property_list_card_broker_pic_wrapper {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.property_list_card_broker_pic_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property_list_card_broker_label_text {
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  color: blue;
  cursor: pointer;
}
.property_list_card_broker_buttons {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.property_list_card_broker_buttons .btn {
  cursor: pointer;
  width: 150px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.property_list_card_broker_buttons .property-list-call {
  background-color: #00b0f0;
}
.property_list_card_broker_buttons .property-list-call:hover {
  background-color: #03a4df;
}
.property_list_card_broker_buttons .property-list-request {
  background-color: #7030a0;
}
.property_list_card_broker_buttons .property-list-request:hover {
  background-color: #602191;
}
.property_list_card_broker_buttons .property-list-email {
  background-color: #ff5399;
}
.property_list_card_broker_buttons .property-list-email:hover {
  background-color: #ee4589;
}

.property_list_card_more_items_container {
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.property_list_card_more_items_box {
  width: 100%;
  max-width: 18rem;
}

.property_list_card_more_items_box img {
  width: 100%;
}

.property_list_card_more_items_box_2 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-black);
  padding: 0 1.5rem;
}
.property_list_card_more_items_box_2 .qr_image {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
}

.property_list_card_more_items_box_3 {
  width: 100%;
}

.property_list_bottom_container {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-black);
  padding: 2rem 5%;
  background-color: #f2f2f2;
}

.property_list_bottom_divider {
  width: 100%;
  height: 30px;
  background-color: #595959;
}

@media only screen and (max-width: 1200px) {
  .property-list-header-bg-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .property-list-contact-name {
    font-size: 19px;
  }
  .property-list-call,
  .property-list-email,
  .property-list-request {
    padding: 5px 30px;
    font-size: 15px;
  }
  .property_list_container {
    gap: 2.5rem;
  }

  .property_list_card {
    flex-direction: column;
    gap: 1rem;
  }

  .property_list_image {
    height: 21rem;
  }
  .property_list_more_photos_text {
    font-size: 15px;
  }

  .property_list_card_title {
    font-size: 22px;
    min-height: 5rem;
  }

  .property_list_card_sub_title {
    font-size: 17px;
  }

  .property_list_card_broker_pic_wrapper {
    max-width: 210px;
    height: 240px;
  }

  .property_list_card_broker_label_text {
    font-size: 15px;
  }

  .property_list_bottom_container {
    font-size: 20px;
  }

  .property_list_bottom_button_container {
    padding: 1.25rem 5%;
  }

  .property_list_bottom_button_container button {
    gap: 0.35rem;
    font-size: 15px;
    padding: 0.5rem 2.25rem;
  }

  .property_list_footer {
    font-size: 17px;
    padding: 1.85rem 5%;
  }
}

@media only screen and (max-width: 600px) {
  .property-list-header-bg-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .property-list-contact-name {
    font-size: 18px;
  }
  .property-list-buttons {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .property-list-call,
  .property-list-email,
  .property-list-request {
    padding: 4px 28px;
    font-size: 14px;
  }

  .property_list_image {
    height: auto;
    aspect-ratio: 16/9;
  }
  .property_list_more_photos_text {
    font-size: 14px;
  }

  .property_list_card_title {
    font-size: 20px;
    min-height: 4.5rem;
  }

  .property_list_card_sub_title {
    font-size: 16px;
  }

  .property_list_card_broker_pic_wrapper {
    max-width: 180px;
    height: 210px;
  }

  .property_list_card_broker_label_text {
    font-size: 14px;
  }

  .property_list_bottom_container {
    font-size: 18px;
  }

  .property_list_bottom_button_container button {
    font-size: 14px;
    padding: 0.45rem 2rem;
  }

  .property_list_footer {
    font-size: 16px;
    padding: 1.5rem 5%;
  }
}

@media only screen and (max-width: 360px) {
  .property_list_bottom_button_container button {
    font-size: 13px;
    padding: 0.4rem 1.5rem;
  }
}

/* ****************************************************************************************************************** */

/* form page Style starts here */

/* ****************************************************************************************************************** */

.property_form_title_container {
  margin-top: 82px;
  background-color: #595959;
  width: 100%;
  padding: 1rem;
}
.property_form_title_container h1 {
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--primary-white);
  text-align: center;
}

.property_form_body_container {
  width: 100%;
  padding: 1rem;
  background-color: #7f7f7f;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.property_form_sub_title {
  width: 100%;
  background-color: #262626;
  padding: 0.5rem 1rem;
}
.property_form_sub_title h2 {
  font-weight: 500;
  font-size: 1.5rem;
  color: #00b0f0;
  text-align: center;
}

.property_form {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.property_form .property_form_row {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.property_form .input_wrapper {
  display: flex;
  width: 100%;
}

.property_form .label {
  background-color: #3f3f3f;
  color: var(--primary-white);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 14px;
}

.property_form .input {
  width: 100%;
  background-color: var(--primary-white);
  outline: none;
  border: none;
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  color: var(--primary-black);
}

.property_form .selector {
  border-right: 8px solid transparent;
  padding-right: 2px;
}
.property_form .helper_text {
  margin-top: 2px;
  color: #e2e0e0;
  font-size: 15px;
  font-weight: 400;
}

.property_form .qr_code_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-white);
  padding: 3px 0;
}

.property_form .qr_code_box img {
  width: 100%;
  max-width: 50px;
  aspect-ratio: 1/1;
}

.property_form .qr-upload-button-wrapper {
  background-color: #3f3f3f;
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.property_form .qr-upload-button {
  background-color: #ff6699;
  font-size: 1rem;
  color: var(--primary-white);
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.property_form_images_container {
  width: 100%;
  background-color: var(--primary-white);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 10px;
}

.property_form_images_container .image_box {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 10px;
  background-color: #d8d8d8;
  border-right: 1px solid #c9c8c8;
}

.property_form_images_container .image_box:nth-child(even) {
  background-color: #7f7f7f;
}
.property_form_images_container .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property_form_btns_wrapper {
  width: 100%;
  background-color: var(--primary-white);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.property_form_btns_wrapper .property_form_btn {
  width: 160px;
  height: 40px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-white);
  background-color: #3f3f3f;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.property_form_btns_wrapper .property_form_btn:hover {
  background-color: #333232;
}

.property_form_btns_wrapper .property_form_btn.preview {
  background-color: #e36c09;
}
.property_form_btns_wrapper .property_form_btn.preview:hover {
  background-color: #d16206;
}

.property_form_btns_wrapper .property_form_btn.create {
  background-color: #0066ff;
  color: #fcf807;
  font-weight: 600;
}
.property_form_btns_wrapper .property_form_btn.create:hover {
  background-color: #035fe9;
}
.property_form .success_popup {
  width: fit-content;
  background-color: var(--primary-white);
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
}

.property_form .success_popup p {
  color: #ff3399;
}

.property_form .success_popup p .blue {
  color: #0066ff;
}

.multi-select-wrapper {
  position: relative;
  width: 100%;
}

.dropdown-toggle {
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  background: var(--primary-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d8d7d7;
}

.dropdown-toggle .arrow {
  margin-left: auto;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.dropdown-menu.open {
  display: block;
}

.option {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option:hover {
  background-color: #f0f0f0;
}

.checkmark {
  color: green;
  font-weight: bold;
}

.selected-tags {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--primary-white);
}

.tag {
  width: 100%;
  background-color: #f2f2f2;
  color: var(--primary-black);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  border: 1px solid #dfdddd;
}
.tag:nth-child(even) {
  background-color: #d8d8d8;
}

.tag span {
  cursor: pointer;
  font-size: 22px;
}

@media only screen and (max-width: 1070px) {
  .property_form .property_form_row {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
  }
}

@media only screen and (max-width: 800px) {
  .property_form_images_container {
    grid-template-columns: repeat(8, 1fr);
  }

  .selected-tags {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 500px) {
  .property_form_images_container {
    grid-template-columns: repeat(5, 1fr);
  }

  .selected-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .property_form_btns_wrapper {
    gap: 1rem;
  }
}

/* ****************************************************************************************************************** */

/* form page Style ends here */

/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */

/* agencies-list page Style start here */

.agency_card_image_sec_container {
  width: 100%;
  background-color: #7f7f7f;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agency_card_image_sec_container .image_container {
  height: 110px;
}
.agency_card_image_sec_container .image_container img {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  .agency_card_image_sec_container {
    padding: 3rem 1.5rem;
  }
  .agency_card_image_sec_container .image_container {
    height: auto;
    width: 100%;
  }
}
/* agencies-list page Style ends here */

/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */

/* agency-profile page Style start here */

/* ****************************************************************************************************************** */
.agency_profile_wrapper {
  width: 100%;
  padding: 3rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.agency_profile_wrapper .first_section {
  width: 100%;
  display: grid;
  grid-template-columns: 500px 300px;
  justify-content: center;
  gap: 2rem;
}
.agency_profile_wrapper .first_card {
  border: 1px solid #c9c6c6;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
.agency_profile_wrapper .first_card.second_card {
  max-width: 300px;
  display: flex;
  flex-direction: column;
}
.agency_profile_wrapper .first_card .image_wrapper {
  width: 100%;
  height: 100%;
  background-color: #bfbfbf;
  padding: 1rem;
  display: grid;
  place-items: center;
}
.agency_profile_wrapper .first_card .image_wrapper img {
  width: 100%;
  max-width: 300px;
}
.agency_profile_wrapper .first_card .profile_wrapper {
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  padding: 1rem;
  display: grid;
  place-items: center;
}
.agency_profile_wrapper .first_card .profile_wrapper img {
  width: 100%;
  max-width: 150px;
}
.agency_profile_wrapper .first_card .top {
  background-color: #595959;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
  text-align: center;
}
.agency_profile_wrapper .first_card .address_list .item {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #262626;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px;
  border-bottom: 1px solid #c9c6c6;
}
.agency_profile_wrapper .first_card .address_list .item .text-right {
  text-align: right;
}
.agency_profile_wrapper .first_card .address_list .item:last-child {
  border: none;
}
.agency_profile_wrapper .first_card .address_list .item .link {
  color: #0033cc;
  font-size: 1rem;
  font-weight: 600;
}
.agency_profile_wrapper .first_card .btns_wrapper {
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  border: none;
  padding: 8px 2rem;
  background-color: #00b0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn:hover {
  background-color: #02a1db;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn.call {
  background-color: #ff6699;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn.call:hover {
  background-color: #f35187;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn.call-back {
  background-color: #7030a0;
}
.agency_profile_wrapper .first_card .btns_wrapper .btn.call-back:hover {
  background-color: #55207e;
}

@media only screen and (max-width: 900px) {
  .agency_profile_wrapper .first_section {
    grid-template-columns: 1fr;
  }
  .agency_profile_wrapper .first_card {
    max-width: 100%;
  }
  .agency_profile_wrapper .first_card.second_card {
    max-width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .agency_profile_wrapper .first_card .address_list .item {
    flex-direction: column;
  }
  .agency_profile_wrapper .first_card .address_list .item .text-right {
    text-align: left;
  }
}
/* ****************************************************************************************************************** */

/* agency-profile page Style end here */

/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */

/* brokers-list page Style start here */

/* ****************************************************************************************************************** */
.brokers_list_select {
  background-color: #ffffff;
  width: 100%;
  max-width: 200px;
  font-size: 1rem;
  color: #000000;
  height: 40px;
  border-radius: 8px;
  border: none;
  border-right: 8px solid transparent;
  padding: 0 10px;
  outline: none;
}

.brokers_list_cards_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 8%;
}
.brokers_details_list_card {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.brokers_details_list_card .name_box {
  width: 100%;
  padding: 10px;
  color: white;
  font-size: 1.35rem;
  font-weight: 500;
  background-color: #595959;
  text-align: center;
}
.brokers_details_list_card .first_link {
  width: 100%;
  padding: 12px;
  color: blue;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #f2f2f2;
  text-align: center;
}
.brokers_details_list_card .second_link {
  width: 100%;
  padding: 12px;
  color: blue;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #d8d8d8;
  text-align: center;
}

.brokers_details_list_card .image_section {
  border-bottom: 1px solid #cecdcd;
  padding: 1rem;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
}
.brokers_details_list_card .image_section .image {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.brokers_details_list_card .third_link {
  width: 100%;
  padding: 10px;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #595959;
  text-align: center;
}
.brokers_details_list_card .bottom_box {
  width: 100%;
  padding: 14px 12px;
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #3f3f3f;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .brokers_list_cards_container {
    flex-direction: column;
  }
  .brokers_details_list_card {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 660px) {
  .brokers_list_cards_container {
    padding: 4rem 5%;
  }
}
/* ****************************************************************************************************************** */

/* brokers-list page Style end here */

/* ****************************************************************************************************************** */

.broker_profile_wrapper {
  width: 100%;
  padding: 5rem 5%;
}

/* ****************************************************************************************************************** */

/* agency-register-form page Style start here */

/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */
.agnency_register_form_main {
  margin-top: 82px;
  background-color: #bfbfbf;
  display: flex;
  flex-direction: column;
}

.agnency_register_form_main .title_section {
  margin: 0 auto;
  margin-top: 1rem;
  width: 100%;
  max-width: 800px;
  background-color: #366092;
  text-align: center;
  padding: 1rem 5%;
}
.agnency_register_form_main .title_section h1 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

.agnency_register_form_main .agency_form {
  margin: 0 auto;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 800px;
  padding: 1rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
}
.agnency_register_form_main .input_row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.agnency_register_form_main .label {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-align: right;
  width: 100%;
  max-width: 400px;
}
.agnency_register_form_main .input_row.mandatory .label::after {
  content: "*";
  color: red;
  font-size: 12px;
  margin-left: 6px;
}
.agnency_register_form_main .input_row.optional .label::after {
  content: "(optional)";
  color: #ff9933;
  font-size: 12px;
  margin-left: 6px;
}

/* Optional fields */
.optional .label::after {
  content: "(optional)";
  color: #ff9933;
  font-size: 12px;
  margin-left: 6px;
}

.agnency_register_form_main .input_wrapper {
  width: 100%;
  max-width: 400px;
}
.agnency_register_form_main .input {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  padding: 10px;
  outline: none;
  border: 1px solid #a5a4a4;
  text-align: right;
  background-color: transparent;
}
.agnency_register_form_main .input:focus {
  border-color: #000000;
}
.agnency_register_form_main .input_row.completed .input {
  border: 1px solid #92d050;
  background-color: #f6fff6;
}

.agnency_register_form_main .file_picker_label {
  color: #0066ff;
  cursor: pointer;
  padding: 1rem;
  background-color: #f8f7f7;
  text-align: center;
}
.agnency_register_form_main .picked_image_wrapper {
  width: 100%;
  max-width: 400px;
  height: 100px;
  background-color: #d8d8d8;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cecdcd;
}
.agnency_register_form_main .picked_image_wrapper img {
  height: 100%;
}

.agnency_register_form_main .btns_wrapper {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.agnency_register_form_main .save_btn {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #00b0f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.agnency_register_form_main .save_btn:hover {
  background-color: #0294c9;
}
.agnency_register_form_main .save_btn.edit_btn {
  color: red;
  background-color: #f2f2f2;
}
.agnency_register_form_main .save_btn.edit_btn:hover {
  background-color: #e2e0e0;
}

.agnency_register_form_main .preview_btn_wrapper {
  margin-top: 1rem;
  width: 100%;
  background-color: #595959;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.agnency_register_form_main .preview_btn_wrapper .preview_btn {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.125rem;
  background-color: #953734;
  border: 2px solid #ffffff;
  padding: 10px 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.agnency_register_form_main .preview_btn_wrapper .preview_btn:hover {
  background-color: #812926;
}

.agnency_register_form_main .field_types_wrapper {
  width: 100%;
  padding: 1rem 5%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 3rem;
  row-gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.agnency_register_form_main .field_types_wrapper .field_type {
  display: flex;
  align-items: center;
  gap: 5px;
}
.agnency_register_form_main .field_types_wrapper p {
  color: red;
  font-size: 1rem;
}
.agnency_register_form_main .field_types_wrapper .box {
  width: 40px;
  height: 20px;
}

.agnency_register_form_main .custom-select {
  position: relative;
  width: 100%;
}

.agnency_register_form_main .select-box {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  cursor: pointer;
  text-align: right;
}

.agnency_register_form_main .arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.agnency_register_form_main .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.agnency_register_form_main .options label {
  display: block;
  padding: 8px 10px;
  cursor: pointer;
}

.agnency_register_form_main .options label:hover {
  background: #f0f0f0;
}

.agnency_register_form_main .options input {
  margin-right: 8px;
}

.agnency_register_form_main .open .arrow {
  transform: rotate(180deg);
}

@media only screen and (max-width: 600px) {
  .agnency_register_form_main .input_row {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .agnency_register_form_main .label {
    text-align: left;
    max-width: 100%;
  }
  .agnency_register_form_main .input_wrapper {
    max-width: 100%;
  }
  .agnency_register_form_main .input {
    text-align: left;
  }

  .agnency_register_form_main .select-box {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .agnency_register_form_main .picked_image_wrapper {
    max-width: 100%;
  }
  .agnency_register_form_main .btns_wrapper {
    flex-direction: column;
  }
}

/* agency-register-form page Style end here */

/* ****************************************************************************************************************** */

/* property-creation-form page Style start here */
.property_creation_main {
  margin-top: 82px;
  background-color: #595959;
  display: flex;
  flex-direction: column;
}
.property_creation_header {
  width: 100%;
  background-color: #0c0c0c;
  padding: 1rem 5%;
  text-align: center;
}
.property_creation_title {
  color: #ff6699;
  font-size: 1.75rem;
  font-weight: 400;
}
.property_creation_title.blue {
  color: #00b0f0;
}

.property_creation_forms_main_container {
  margin: 2rem 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 0 5%;
}

.property_creation_sections_container {
  width: 100%;
  max-width: 320px;
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.property_creation_sections_wrapper {
  width: 100%;
  background-color: #d8d8d8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.property_creation_section_card {
  width: 100%;
  background-color: #3f3f3f;
  color: #d8d8d8;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 10px 8px;
  cursor: pointer;
  text-align: right;
  transition: all 0.3s ease;
}
.property_creation_section_card:hover {
  background-color: #292828;
}
.property_creation_section_card.active {
  background-color: #0033cc;
  color: yellow;
  font-weight: 600;
}
.property_creation_preview_btn {
  margin: 1rem auto 0;
  background-color: #009999;
  border-radius: 20px;
  border: 1px solid #01014e;
  cursor: pointer;
  width: 130px;
  height: 35px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.property_creation_preview_btn:hover {
  background-color: #037c7c;
}

.property_creation_form_wrapper.hidden {
  display: none;
}

.property_creation_form_wrapper {
  width: 100%;
  max-width: 700px;
  background-color: white;
  padding: 1rem;
}
.property_creation_form_title {
  background-color: #1e4e79;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 14px;
}
.property_creation_inputs_container {
  width: 100%;
  background-color: #f2f2f2;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.property_creation_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.property_creation_column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.property_creation_label {
  background-color: #d8d8d8;
  color: black;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px;
  text-align: right;
}
.property_creation_label.qr_label {
  color: blue;
}
.property_creation_input {
  width: 100%;
  outline: none;
  background-color: white;
  border: 1px solid #949393;
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 14px;
}
.property_creation_input.file_input {
  padding: 8px 10px;
}
.property_creation_btns_wrapper {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.property_creation_edit_btn {
  background-color: #ff6699;
  border: none;
  cursor: pointer;
  width: 150px;
  height: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
}
.property_creation_edit_btn:hover {
  background-color: #e94c81;
}
.property_creation_edit_btn.save_btn {
  background-color: #00b0f0;
}
.property_creation_edit_btn.save_btn:hover {
  background-color: #059bd1;
}

.property_creation_add_btn {
  background-color: #0000ff;
  border: none;
  color: white;
  min-width: 80px;
  height: 38px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.property_creation_add_btn:hover {
  background-color: #0303c7;
}

.property_creation_main .landmark_input_row {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.property_creation_main .landmark_item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  background-color: white;
  padding: 10px;
}

.property_creation_main .landmark_text {
  flex: 1;
}

.property_creation_main .remove_btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.property_creation_main .map_preview iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  margin-top: 1rem;
}

.property_creation_main .photos_preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.property_creation_main .photo_item {
  position: relative;
  width: 110px;
  height: 110px;
}

.property_creation_main .photo_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
}

.property_creation_main .image_remove_btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 20px;
}

@media only screen and (max-width: 1160px) {
  .property_creation_header {
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .property_creation_header .title.blue {
    position: static;
    transform: translate(0);
  }
}

@media only screen and (max-width: 991px) {
  .property_creation_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .property_creation_label {
    text-align: left;
  }
  .property_creation_main .map_preview iframe {
    height: 200px;
  }
}

@media only screen and (max-width: 710px) {
  .property_creation_forms_main_container {
    flex-direction: column;
  }
  .property_creation_sections_container {
    max-width: 100%;
  }
  .property_creation_sections_wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .property_creation_section_card {
    width: fit-content;
  }
}
/* property-creation-form page Style end here */

/* broker-profile page Style start here */

.broker_profile_login_btn {
  background-color: #0070c0;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 1rem;
  font-size: 1rem;
  color: white;
}
.broker_profile_login_btn:hover {
  background-color: #0260a3;
}

.broker_profile_top_section {
  margin-top: 82px;
}

/* broker-profile page Style end here */

/* agency-profile page Style end here */
.agency_profile_search_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}
.agency_profile_search {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.agency_profile_search .search_input {
  width: 100%;
  font-size: 1rem;
  padding: 0 10px;
  padding-right: 35px;
  height: 38px;
  border: 1px solid #a3a3a3;
  outline: none;
  border-radius: 5px;
}
.agency_profile_search .search_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
}

.agency_profile_top_section {
  margin-top: 82px;
}

@media only screen and (max-width: 890px) {
  .agency_profile_search_wrapper {
    flex: auto;
    width: 100%;
  }
  .agency_profile_top_section {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 717px) {
  .agency_profile_header {
    position: static;
  }
  .agency_profile_top_section {
    margin-top: 0;
  }
}
/* agency-profile page Style end here */

/* brokers-list page Style start here */
.brokers_list_main_header {
  padding-left: 8%;
  padding-right: 8%;
}
.brokers_list_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 8%;
}

@media only screen and (max-width: 660px) {
  .brokers_list_main_header {
    padding-left: 5%;
    padding-right: 5%;
  }
  .brokers_list_header {
    padding: 1.5rem 5%;
  }
}
/* brokers-list page Style end here */

/* view-brokers page Style start here */
.view_brokers_main_title {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
}
.view_brokers_tabs_container {
  margin-top: 82px;
  width: 100%;
  padding: 1rem 5%;
  background-color: #3f3f3f;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  row-gap: 12px;
}
.view_brokers_tab {
  width: 100%;
  background-color: #7f7f7f;
  border: none;
  border-left: 1px solid #0033ccb7;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view_brokers_tab:hover {
  background-color: #8d8c8c;
}
.view_brokers_tab.active {
  background-color: #ff4784;
  color: #fff;
  font-weight: 700;
}

.view_brokers_list_container {
  width: 100%;
  background-color: #7f7f7f;
  padding: 0 5%;
}
.view_brokers_list_container_title {
  background-color: #f2f2f2;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #acaaaa;
}
.view_brokers_list_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  padding-bottom: 3rem;
}

.view_brokers_list_wrapper .view_brokers_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 500;
  padding: 12px;
  background-color: white;
}
.view_brokers_list_wrapper .view_brokers_list:nth-child(even) {
  background-color: #f2f2f2;
}
.view_brokers_list_wrapper .view_brokers_list .first {
  text-align: right;
}

.view_brokers_list_wrapper .view_brokers_list .link:hover {
  color: blue;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 570px) {
  .view_brokers_header {
    position: static;
  }
  .view_brokers_tabs_container {
    margin-top: 0;
  }
  .view_brokers_list_wrapper .view_brokers_list {
    gap: 1.5rem;
  }
}
/* view-brokers page Style end here */

/* project-single page Style start here */
.project_single_header {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 5%;
}
.project_single_header .logo_image {
  width: 50px;
}
.project_single_header .title {
  font-weight: 700;
  font-size: 2rem;
}
.project_single_header .download_btn {
  background-color: #0033cc;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #f7f20e;
  transition: all 0.3s ease;
}
.project_single_header .download_btn:hover {
  background-color: #042fb3;
}

.project_single_main {
  width: 100%;
  background-color: #3f3f3f;
}
.project_single_main_top_title {
  width: 100%;
  padding: 10px 5%;
  color: white;
  font-size: 1.65rem;
  font-weight: 400;
  text-align: center;
}
.project_single_main_hero {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
.project_single_main_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project_single_main_about {
  width: 100%;
  padding: 1.5rem 5% 0 5%;
  overflow: hidden;
}
.project_single_main_about .title {
  color: #0c0c0c;
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #888787;
}
.project_single_main_about .desc {
  color: #3f3f3f;
  background-color: white;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #888787;
}
.project_single_main_about .list_container {
  width: 100%;
  background-color: white;
  padding: 2rem 1.5rem;
}
.project_single_main_about .list_container .list_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  list-style: none;
}
.project_single_main_about .list_container .list_item .data {
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0c0c0c;
  padding: 8px 10px;
  border-top: 1px solid #dddcdc;
  border-bottom: 1px solid #dddcdc;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.project_single_main_about .list_container .list_item .data.first {
  text-align: right;
  justify-content: flex-end;
}

.project_single_main_about .list_container .list_item:nth-child(even) .data {
  background-color: white;
  border: none;
}
.project_single_main_about .list_container .list_item .data .qr_image {
  width: 80px;
}
.project_single_main_about .list_container .list_item .data .link:hover {
  color: #0066cc;
}

.project_single_main_about .property-table {
  width: 100%;
  background-color: white;
  overflow: auto;
  padding: 2rem 1.5rem;
}

.project_single_main_about .property-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.project_single_main_about .property-table th,
.project_single_main_about .property-table td {
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #999;
}

.project_single_main_about .property-table th {
  background: #595959;
  color: #fff;
  font-weight: 600;
}

.project_single_main_about .property-table td[rowspan] {
  background: #f2f2f2;
  font-weight: 600;
}

.project_single_main_about .property-table .divider td {
  background: #7f7f7f;
  height: 4px;
  border: none;
  padding: 0;
}

.project_single_main_about .more_photos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.project_single_main_about .more_photos .image_card {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #d8d8d8;
  padding: 1rem;
  overflow: hidden;
}
.project_single_main_about .more_photos .image_card:nth-child(even) {
  background-color: #f2f2f2;
}
.project_single_main_about .more_photos .image_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project_single_main_about .brokr_container {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.project_single_main_about .broker_card {
  width: 100%;
  max-width: 250px;
  border: 1px solid #1a1919;
  padding: 1rem 1.5rem;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project_single_main_about .broker_card .broker_image {
  width: 100%;
  max-width: 80px;
  aspect-ratio: 1/1;
}
.project_single_main_about .broker_card .name {
  margin-top: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.project_single_main_about .broker_card .call_btn {
  margin-top: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  background-color: #00b0f0;
  border: none;
  width: 100%;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project_single_main_about .broker_card .call_btn:hover {
  background-color: #049ed6;
}
.project_single_main_about .broker_card .call_btn.req_btn {
  background-color: #7030a0;
}
.project_single_main_about .broker_card .call_btn.req_btn:hover {
  background-color: #612192;
}
.project_single_main_about .broker_card .call_btn.email_btn {
  background-color: #ff75ad;
}
.project_single_main_about .broker_card .call_btn.email_btn:hover {
  background-color: #f15a97;
}

.project_single_main_about .other_projects {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.project_single_main_about .other_project_card {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background-color: white;
}
.project_single_main_about .other_project_card img {
  width: 100%;
  aspect-ratio: 16/9;
}
.project_single_main_about .other_project_card .text_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  color: black;
  font-size: 1rem;
  font-weight: 500;
}
.project_single_main_about .other_project_card .text_container .name {
  font-size: 1.65rem;
  font-weight: 500;
}
.project_single_main_about .other_project_card .text_container .link:hover {
  color: #0066cc;
  transition: all 0.3s ease;
}

.project_single_main_about .payment_graph_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: white;
  padding: 2rem 1.5rem;
  gap: 2rem;
}
.project_single_main_about .payment_graph_container .list_container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.project_single_main_about .payment_graph_container .list_container .item {
  list-style: none;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0c0c0c;
  padding: 8px 10px;
  border-top: 1px solid #dddcdc;
  border-bottom: 1px solid #dddcdc;
  background-color: #f2f2f2;
  transition: all 0.3s ease;
  text-align: right;
}
.project_single_main_about
  .payment_graph_container
  .list_container
  .item:nth-child(even) {
  background-color: white;
  border: none;
}
.project_single_main_about
  .payment_graph_container
  .list_container
  .item
  .link:hover {
  color: #0066cc;
  transition: all 0.3s ease;
}
.project_single_main_about .chart-container {
  width: 100%;
  max-width: 300px;
}

@media only screen and (max-width: 900px) {
  .project_single_main_about .list_container .list_item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .project_single_main_about .list_container .list_item .data.first {
    text-align: left;
    justify-content: flex-start;
  }
  .project_single_main_about .list_container .list_item:nth-child(even) .data {
    background-color: #f2f2f2;
    border-top: 1px solid #dddcdc;
    border-bottom: 1px solid #dddcdc;
  }
  .project_single_main_about .list_container .list_item .data:nth-child(even) {
    background-color: white;
    border: none;
  }

  .project_single_main_about .more_photos {
    grid-template-columns: repeat(4, 1fr);
  }

  .project_single_main_about .other_project_card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .project_single_main_about .payment_graph_container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .project_single_main_about .payment_graph_container .list_container .item {
    text-align: left;
  }
}
@media only screen and (max-width: 660px) {
  .project_single_header .download_btn {
    font-size: 14px;
  }

  .project_single_main_about .more_photos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 460px) {
  .project_single_main_about .more_photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .project_single_main_about .chart-container {
    width: 100%;
    max-width: 250px;
  }
}
/* project-single page Style end here */

/* investors form page Style start here */
.investor_registor_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 0;
}
.investor_registor_main_title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3px;
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  font-family: "Federo", sans-serif;
}
.investor_registor_login_btn_container {
  margin-top: 82px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 5%;
  background-color: #d8d8d8;
}
.investor_registor_login_btn {
  background-color: #ff6699;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 1rem;
  font-size: 1.125rem;
  color: white;
}
.investor_registor_login_btn:hover {
  background-color: #eb4f83;
}

.investor_registor_main {
  width: 100%;
  background-color: white;
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
}
.investor_registor_main_card {
  width: 100%;
  max-width: 700px;
  background-color: #3f3f3f;
}
.investor_registor_main_card_text_container {
  width: 100%;
  padding: 1rem 2rem;
  color: #d8d8d8;
  font: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 25px;
}
.investor_registor_main_card_form {
  width: 100%;
  background-color: #7f7f7f;
  padding: 1rem;
}
.investor_registor_main_card_form_title {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.investor_registor_main_card_form_inputs_wrapper {
  margin: 1rem auto;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.investor_registor_main_card_form_select,
.investor_registor_main_card_form_input {
  width: 100%;
  outline: none;
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-right: 10px solid transparent;
  text-align: right;
}
.investor_registor_main_card_form_input {
  border: none;
}
.investor_registor_main_card_form_submit_btn_wrapper {
  width: 100%;
  background-color: #bfbfbf;
  padding: 1rem;
}
.investor_registor_main_card_form_submit_btn {
  padding: 10px 1rem;
  color: white;
  font-weight: 400;
  font-size: 1.125rem;
  background-color: #00b0f0;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.investor_registor_main_card_form_submit_btn:hover {
  background-color: #0594c9;
}

@media only screen and (max-width: 570px) {
  .investor_registor_header {
    justify-content: space-between;
  }
  .investor_registor_main_title {
    position: static;
    transform: translate(0);
  }
}
/* investors form page Style end here */

/* projects multiple page Style start here */
.project_multiple_top_section_container {
  margin-top: 82px;
  width: 100%;
  background-color: #3f3f3f;
  padding: 1rem 5%;
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project_multiple_main {
  width: 100%;
  padding: 1.5rem 5% 3rem 5%;
  background-color: #595959;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.project_multiple_main_container {
  width: 100%;
  padding: 1rem 2rem;
  background-color: white;
}
.project_multiple_cards_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.project_multiple_cards_wrapper .project_multiple_card {
  width: 100%;
  background-color: #f2f2f2;
  border: 1px solid #dbd9d9;
  color: black;
  text-align: center;
  padding: 10px 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project_multiple_cards_wrapper .main_title {
  font-family: "Federo", sans-serif;
  font-weight: 300;
  font-size: 1.85rem;
}
.project_multiple_cards_wrapper .second_title {
  margin-top: 2px;
  font-weight: 400;
  font-size: 1.25rem;
}
.project_multiple_cards_wrapper .third_title {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
}
.project_multiple_cards_wrapper .project_image {
  max-height: 100px;
}

.project_multiple_year_container {
  margin-top: 1.5rem;
  width: 100%;
  padding: 10px 1rem;
  background-color: #d8d8d8;
  color: black;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}

.project_multiple_labels_container {
  width: 100%;
  padding: 10px 1rem;
  background-color: #f2f2f2;
  color: #595959;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project_multiple_details_container {
  margin-top: 2.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.project_multiple_details_container .left_section {
  display: flex;
  flex-direction: column;
}
.project_multiple_details_container .left_section .image_wrapper {
  flex: 1;
  overflow: hidden;
}
.project_multiple_details_container .left_section .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project_multiple_details_container .left_section .bottom_container {
  width: 100%;
  padding: 10px 1rem;
  background-color: #7f7f7f;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.project_multiple_details_container .right_section .list_container {
  display: flex;
  flex-direction: column;
}
.project_multiple_details_container .right_section .list_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  color: black;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid #dddcdc;
  padding: 10px 1rem 5px 1rem;
}
.project_multiple_details_container .right_section .para_container {
  color: black;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #dddcdc;
  padding: 10px 1rem;
}

.project_multiple_details_container .right_section .bottom_link_container {
  text-align: center;
  padding: 10px 1rem;
}
.project_multiple_details_container
  .right_section
  .bottom_link_container
  .link {
  color: #0066ff;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.project_multiple_details_container
  .right_section
  .bottom_link_container
  .link:hover {
  color: #0450c4;
}

@media only screen and (max-width: 901px) {
  .project_multiple_cards_wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .project_multiple_top_section_container {
    gap: 1rem;
  }
  .project_multiple_labels_container {
    gap: 1rem;
  }

  .project_multiple_details_container {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }
  .project_multiple_details_container .left_section .image_wrapper {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

@media only screen and (max-width: 600px) {
  .project_multiple_main_container {
    padding: 1rem;
  }

  .project_multiple_details_container .right_section .list_item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
/* projects multiple page Style end here */

/* Callback Modal Styles */
.callback-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  padding: 1rem !important;
  margin: 0 !important;
}

.callback-modal-overlay.hidden {
  display: none !important;
}

.hidden {
  display: none !important;
}

.callback-modal-container {
  width: 100% !important;
  max-width: 28rem !important;
  position: relative !important;
  margin: auto !important;
}

.callback-modal-content {
  background-color: white !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  position: relative !important;
}

.callback-modal-header {
  background-color: #3b82f6 !important;
  padding: 1rem 1.5rem !important;
}

.callback-modal-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif !important;
}

.callback-modal-body {
  padding: 1.5rem !important;
}

.callback-form-group {
  margin-bottom: 1rem !important;
}

.callback-form-group:last-of-type {
  margin-bottom: 0 !important;
}

.callback-form-label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  margin-bottom: 0.5rem !important;
}

.callback-form-input {
  width: 100% !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-sizing: border-box !important;
}

.callback-form-input:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.callback-modal-footer {
  margin-top: 1.5rem !important;
  display: flex !important;
  gap: 1rem !important;
  justify-content: flex-end !important;
}

.callback-btn-cancel {
  padding: 0.5rem 1.5rem !important;
  background-color: #e5e7eb !important;
  color: #374151 !important;
  border-radius: 0.5rem !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
}

.callback-btn-cancel:hover {
  background-color: #d1d5db !important;
}

.callback-btn-submit {
  padding: 0.5rem 1.5rem !important;
  background-color: #3b82f6 !important;
  color: white !important;
  border-radius: 0.5rem !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
}

.callback-btn-submit:hover {
  background-color: #2563eb !important;
}
/* Callback Modal Styles End */
