:root {
  --textcolor: #525866;
  --bg: #f1f4f9;
  --white: #fff;
  --purple: #7d52f4;
  --darkbg: #202737;
  --lightblack: #2a3141;
  --textblack: #0e121b;
  --pink: #ff64c4;
  --skyblue: #39c9ea;
  --lightpink: #e66ba9;
  --black: #000;
  --yellow: #ffc050;
  --grey: #5f82b3;
  --medium-sea-green: #4dbd90;
  --cornflower-blue: #489fd9;
  --light-slate-gray: #8668ab;
  --gainsboro: #dfe8e4;
  --placeholder: #99a0ae;
  --border-color: #e1e4ea;
  --orange: #fd7b5f;
}

@font-face {
  font-family: "Satoshi";
  src: local("Satoshi"),
    url("/fonts/satoshi/Satoshi-Bold.woff2") format("woff2");
  font-weight: bold;
}
@font-face {
  font-family: "Satoshi";
  src: local("Satoshi"),
    url("/fonts/satoshi/Satoshi-Medium.woff2") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Satoshi";
  src: local("Satoshi"),
    url("/fonts/satoshi/Satoshi-Regular.woff2") format("woff");
  font-weight: 400;
}

body {
  color: var(--textcolor);
  font-family: "Satoshi", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  background-color: var(--bg);
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Satoshi", sans-serif;
}

.fz-12 {
  font-size: 12px !important;
}

.fz-14 {
  font-size: 14px !important;
}

.fz-18 {
  font-size: 18px !important;
}

.ellipse1 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* bootstrap */
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  /* Make sure FA is loaded */
  font-weight: 900;
  /* solid style */
  font-size: 11px;
  color: var(--border-color);
  display: inline-block;
  line-height: 22px;
  padding: 0 20px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0 !important;
}

.breadcrumb-item a,
.breadcrumb-item {
  font-size: 14px;
  color: #475467;
  text-decoration: none;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--textblack);
  background-color: transparent;
}

.nav-pills .nav-link {
  color: var(--textcolor);
  font-size: 20px;
  padding: 9px 30px;
  padding-left: 0;
  font-weight: 500;
}
.form-check-input:checked {
  background-color: var(--purple);
  border-color: var(--purple);
  box-shadow: none;
}
.card .swiper-pagination-bullet-active {
  background: var(--white) !important;
}
.card .swiper-pagination-bullet {
  background-color: #ffffff;
}

/* ---------- */
.content-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.navbar {
  z-index: 999;
  padding: 24px;
  position: fixed;
  inset: 0% 0% auto;
  display: block;
}
.navbar-toggler {
  display: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-collapse {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
}

.navbar-rounded {
  background-color: var(--white);
  border-radius: 100px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px;
  box-shadow: 0 4px 30px #0000000a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__inner {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  list-style: none;
}

.list-item a {
  color: var(--darkbg);
  font-weight: 500;
  text-decoration: none;
}

.text-danger {
  color: #ff1a2d !important;
}

.text-pink {
  color: var(--pink) !important;
}

.text-primary {
  color: var(--purple) !important;
}
.text-orange {
  color: var(--orange) !important;
}
.text-darkblack {
  color: var(--darkbg) !important;
}
.text_colorgrey {
  color: var(--textcolor) !important;
}
.text-blue {
  color: var(--skyblue) !important;
}
.text-grey {
  color: var(--placeholder) !important;
}

.btn-primary {
  border: 2px solid var(--darkbg);
  background-color: var(--purple);
  color: var(--white);
  letter-spacing: -0.096px;
  text-transform: capitalize;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 8px 25px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px #3e3164;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: var(--pink);
  border-color: var(--darkbg);
}

/*  */
.container {
  max-width: 1240px;
  margin: auto;
}

.filters_box {
  padding-top: 40px;
  padding-bottom: 20px;
  /* display: flex;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: 10px;
  overflow: auto; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.filters_box .input-group-append {
  flex: 1 1 calc(100% / 7 - 1rem);
  min-width: 150px;
}
.filters_box #resetButton {
  min-width: 70px;
}

.search {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  min-width: 356px;
  max-width: 356px;
  margin-bottom: 0;
  padding: 0px 12px;
  background-color: var(--white);
}
#additional-filter ~ .select2 {
  min-width: 150px !important;
}
.filter-inputs input:not(input[type="checkbox"]) {
  font-size: 14px;
  line-height: 26px;
  border-color: var(--border-color) !important;
  border-radius: 10px;
  min-width: 90px;
  box-shadow: none !important;
}

.search .select2-container,
.search .select2-search,
.search .select2-search__field {
  width: 100% !important;
}

.search .select2-container {
  padding-left: 10px;
}

.search .select2-selection {
  height: 38px !important;
}

.search .seachDropdown ~ .select2 .select2-selection__rendered {
  padding: 0 !important;
  display: flex;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--multiple {
  border: none !important;
}

.select2-search__field {
  line-height: 24px !important;
}

.select2-container .select2-selection--single {
  height: 40px !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
}

.select2-container .select2-selection__rendered {
  line-height: 40px !important;
  padding-left: 12px !important;
  padding-right: 35px !important;
  font-size: 14px;
}

.select2-container .select2-selection__arrow {
  height: 40px !important;
  width: 40px !important;
}

.select2-container .select2-selection__placeholder {
  color: var(--placeholder) !important;
}

.select2-selection__clear {
  padding-left: 10px !important;
  line-height: 38px !important;
}
.seachDropdown ~ .select2 .select2-selection__clear {
  padding-left: 10px !important;
  line-height: 28px !important;
}

.select2-selection__arrow {
  background-image: none !important;
  /* Remove default arrow background */
  position: relative;
  /* Needed for positioning ::after */
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-selection__arrow::after {
  content: "\f107";
  /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  /* Make sure FA is loaded */
  font-weight: 900;
  /* solid style */
  font-size: 12px;
  color: var(--placeholder);
  display: inline-block;
  line-height: 1;
}

.select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: var(--white) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px -12px #0003;
  top: 10px;
  border: 1px solid transparent !important;
  padding: 10px;
}

.select2-results__option {
  font-size: 14px !important;
  padding: 8px !important;
  max-height: unset !important;
  padding: 10px !important;
}

.select2-results__option.select2-results__option--highlighted {
  background-color: #f4f1fe !important;
  border-radius: 12px !important;
  color: var(--purple) !important;
}

.select2-results {
  border-radius: 12px;
}

.select2-results__options {
  max-height: unset !important;
}

.select2-selection__choice {
  height: 40px !important;
  margin: 0 !important;
  background-color: transparent !important;
  border: none !important;
}

/* ----- */
.custom_dropdown {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.dropdown-toggle::after {
  display: none !important;
}

.custom_dropdown span {
  color: var(--placeholder);
  font-size: 14px;
  line-height: 24px;
}

.custom_dropdown span ~ i {
  color: var(--placeholder);
  font-size: 12px;
}

/*  */
/* swiper */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
}

.swiper-button-next,
.swiper-button-prev {
  height: 30px !important;
  background-color: white;
  border-radius: 50%;
  width: 30px !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: var(--purple) !important;
}

.dropdown-toggle {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 1px 2px #0a0d1408;
  padding: 7px 12px;
}

/* ------ */
/* home card*/
.hourstag {
  background-color: #262626bf;
  border-radius: 100px;
  padding: 9px 18px;
  position: absolute;
  inset: 11px auto auto 17px;
  position: absolute;
  z-index: 2;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.09px;
}

.card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px #00000014;
  border: none;
}

.card-body {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.cardtitle {
  color: var(--textblack);
  letter-spacing: -0.198px;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.cardpara {
  color: var(--textcolor);
  letter-spacing: -0.09px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.cardfooter {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
}

.price {
  color: var(--textblack);
  letter-spacing: -0.09px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 23px;
  font-weight: 500;
  line-height: 24px;
}

.linegrey {
  background-color: var(--border-color);
  height: 1px;
}

/* ------------ */
/* newsletter */
.newsletter,
footer {
  background-color: var(--darkbg);
  padding-top: 100px;
}

.newsletter .heading3,
.myTeamSection .heading3,
.featuredList .heading3 {
  color: var(--darkbg);
  text-align: center;
  letter-spacing: -1.8px;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 900;
  line-height: 61px;
  font-family: sans-serif;
  display: inline-flex;
  flex-wrap: wrap;
  position: relative;
  text-align: left;

  /* transform: translateY(-100px); */
}

.newsletter .heading3 .sky,
.myTeamSection .heading3 .sky,
.featuredList .heading3 .sky {
  position: absolute;
  left: 200px;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* Optional for smooth transition */
}
.myTeamSection .heading3 .sky,
.featuredList .heading3 .sky {
  left: 0;
}

.inner_newsletter.in-viewport .heading3 .sky,
.myTeamSection.in-viewport .heading3 .sky,
.featuredList.in-viewport .heading3 .sky {
  animation: fade 2s ease-in;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  /* Ensures opacity remains 1 after animation */
}
.myTeamSection.in-viewport .heading3 .sky,
.featuredList.in-viewport .heading3 .sky {
  animation-delay: 0s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.newsletter .inner_newsletter {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  overflow: hidden;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.newsletter .search {
  border-radius: 7px;
}

.newsletter .searchBox {
  max-width: 582px;
  margin-top: 20px !important;
  margin-bottom: 10px !important;
  margin: auto;
  width: 100%;
}

.newsletter .btn-primary {
  border: 2px solid var(--white);
  box-shadow: 2px 2px var(--white);
  font-family: sans-serif;
}

/* footer */
footer {
  padding: 120px 30px 40px;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-wrapper li {
  list-style-type: none;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title-2 {
  color: var(--white);
  letter-spacing: 2.7px;
  text-transform: uppercase;
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.footer-link {
  color: var(--white);
  letter-spacing: -0.016px;
  line-height: 37px;
  text-decoration: none;
}

.footer-social-link {
  background-color: var(--purple);
  border-radius: 100px;
  padding: 15px;
  width: 55px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-link svg {
  fill: var(--white);
}

.footer-social-block-two {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.footerLogo {
  object-fit: contain;
}

.footer-wrapper > .footer-block-two {
  max-width: 390px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: var(--white);
  font-size: 12px;
  line-height: 25px;
}

.footer-divider-two {
  background-color: #ffffff0d;
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 20px;
}

/* map */
#map {
  height: 580px;
  border-radius: 20px;
}

/* listing */
.listingwrapper {
  background-color: var(--white);
  border-radius: 20px;
  padding: 24px 40px 40px;
}
.listingHeader > div {
  flex-wrap: wrap;
}

.fullimg {
  object-fit: cover;
  border-radius: 13px;
  width: 100%;
}

.fullimg.leftImg {
  height: auto;
  aspect-ratio: 1 / 0.9;
  background-size: cover;
  background-repeat: no-repeat;
}

.ImgGrid_Box .fullimg.leftImg,
.video_iframe {
  height: auto;
  aspect-ratio: 1 / 0.91;
}

.cardfooter-copy {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-top: 1px solid #e1e4ea;
  padding-top: 20px;
}

.cardfooter-copy .tags {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.read-more-btn {
  color: var(--purple);
  text-underline-offset: 4px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
  background-color: transparent;
  border: none;
}

.listingwrapper .prop_desc {
  font-size: 20px;
  line-height: 30px;
}
.listingwrapper .added {
  font-size: 20px !important;
}

.profilecard .card-body {
  padding: 80px 20px 20px;
}

.profilecard .avatar {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: auto;
  width: 160px;
  height: 160px;
  border: 6px solid var(--white);
  background-color: var(--white);
}

.profilecard .name {
  color: #0e121b;
  text-align: center;
  letter-spacing: -0.09px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
}

.profilecard .designation {
  color: var(--textcolor);
  text-align: center;
  letter-spacing: -0.198px;
  font-size: 18px;
  font-weight: 500;
}

.profilecard .chatbtn {
  background-color: transparent;
  border-color: var(--pink);
  box-shadow: 2px 2px var(--pink);
}
.emailbtn {
  background-color: transparent;
  border-color: var(--skyblue);
  box-shadow: 2px 2px var(--skyblue);
  color: var(--skyblue) !important;
}
.emailbtn:hover {
  background-color: transparent;
  border-color: var(--skyblue);
  box-shadow: 2px 2px var(--skyblue);
}

.rangebox {
  background-color: #f8f9fc;
  border-radius: 12px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 16px 40px 30px;
  box-shadow: 0 2px 5px #0003;
}

.field-label {
  color: #0e121b;
  letter-spacing: -0.084px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}

.pricewrap {
  padding-top: 40px;
  position: relative;
}

.pricewrapper {
  background-color: var(--darkbg);
  border-radius: 20px;
  padding: 40px;
}

.pricewrap .card {
  padding: 20px;
}

.pricewrap .arrow-up {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 27px solid var(--darkbg);
  left: 0;
  right: 0;
  position: absolute;
  top: 15px;
  margin: auto;
}
.priceRow {
  grid-column-gap: 37px;
  grid-row-gap: 37px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
#sharesButton,
#saveAction {
  cursor: pointer;
}
#new_map {
  height: 700px;
  border-radius: 30px;
}
.featuresSection .rangebox,
.InteriorSection .rangebox > .row {
  padding: 30px;
}
.InteriorSection .rangebox .title {
  border-radius: 10px;
  padding: 12px 8px !important;
}
.residential .imgSlider_box {
  background-color: var(--darkbg);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  height: auto;
}
.residential .imgSlider_box > .swiper {
  padding: 20px 20px 40px;
}

.residential .imgSlider_box > .swiper .swiper-button-next,
.residential .imgSlider_box > .swiper .swiper-button-prev {
  bottom: 10px;
  top: auto;
  background-color: transparent;
  box-shadow: none;
  color: var(--white) !important;
}
.residential .imgSlider_box > .swiper .swiper-button-prev {
  left: auto;
  right: 30px;
}
.residential .imgSlider_box > .swiper .swiper-pagination {
  padding-left: 20px;
  bottom: 14px;
}
.residential .imgSlider_box > .swiper .swiper-pagination-bullet-active {
  background: var(--white) !important;
}
.residential .imgSlider_box > .swiper .swiper-pagination-bullet {
  background-color: #fff6;
  width: 10px;
  height: 10px;
}
.paragraph-copy {
  text-align: left;
  letter-spacing: -0.2px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 30px;
}
.view_profile .bannerImg {
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}
.view_profile .profileImg {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  margin-top: -100px;
  position: relative;
  margin-left: 80px;
  border: 5px solid white;
}
.view_profile .profileImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view_profile .Specializing.card {
  border-radius: 20px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  box-shadow: none;
}
.view_profile .Specializing.card ul {
  list-style-type: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.view_profile .Specializing.card ul li {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #f8f9fc;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 12px 8px;
  display: flex;
}
.paragraph {
  letter-spacing: -0.2px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.heading-5 {
  color: #18181b;
  letter-spacing: -1.8px;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 900;
  line-height: 54px;
}
.myTeamSection {
  background-color: var(--darkbg);
  padding-top: 100px;
  padding-bottom: 100px;
}
.teamcard > .rounded-circle {
  width: 160px;
  height: 160px;
}
.teamcard {
  background-color: var(--white);
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #00000014;
}
.universalbtn {
  border: 2px solid var(--darkbg);
  background-color: var(--purple);
  box-shadow: 2px 2px 0 0 var(--black);
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 324px;
  height: 60px;
  font-size: 24px;
  font-weight: 500;
  transition: background-color 0.2s;
  display: flex;
  border-color: var(--white);
  box-shadow: 2px 2px 0 0 var(--white);
}
.universalbtn:hover {
  background-color: var(--darkbg);
}
#shareModal .shareIcons {
  gap: 30px;
}
#shareModal .shareIcons a {
  text-decoration: none;
  color: var(--black);
}
#shareModal .shareIcons .iconBox {
  width: 60px;
  height: 60px;
  background-color: #f6f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
/* login modal */
#loginModal #tab-container a {
  color: var(--black);
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
}
#loginModal #tab-container > .active a {
  color: var(--purple);
}
#loginModal .innerSection .googleLogin {
  background-color: #ededed;
  border-radius: 30px;
  padding: 9px;
}
.login-flex .form-control {
  max-height: 54px;
  height: 54px;
      border-radius: 10px;
    border: 1px solid var(--border-color) !important;
}
.cutoff_text {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  line-height: 0.1em;
  margin: 30px auto 40px;
}
.pw-field #togglePassword{
      position: absolute;
    right: 10px;
    top: 29%;
}
#loginModal #modalContent{
  padding: 0 20px;
}

.cutoff_text span {
  background: #fff;
  padding: 0 10px;
  color: var(--black);
  font-weight: 500 !important;
  font-size: 13px;
}
.login-flex .btn-outline {
    padding: 15px 13px;
    border-radius: 100px;
    box-shadow: none;
}
#tab-container > div{
    padding-bottom: 15px;
}
#tab-container > div.active{
      border-bottom: 2px solid var(--purple);
}
.addressLine{
  line-height: 38px;
}

/* responsive */
@media only screen and (max-width: 991px) {
  .footer-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }
  .navbar .navbar__center {
    display: none;
  }
  .listingwrapper {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 20px;
  }
  .fullimg.leftImg {
    max-height: 330px;
  }
  .ImgGrid_Box .fullimg.leftImg,
  .video_iframe {
    max-height: 190px;
  }
  .newsletter .heading3,
  .myTeamSection .heading3,
  .featuredList .heading3 {
    font-size: 45px;
  }
  .newsletter .heading3 > div {
    margin: auto;
  }
  .newsletter .heading3 .sky,
  .myTeamSection .heading3 .sky,
  .featuredList .heading3 .sky {
    position: relative;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 1;
  }
  .navbar-toggler {
    display: block;
  }
  .view_profile .bannerImg {
    height: 300px;
  }

  .view_profile {
    padding-top: 70px;
  }
  .navbar .navbar-collapse {
    max-width: 360px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s linear;
     margin-left: auto;
     padding: 0;
  }
  .navbar .navbar-collapse.show {
   max-height: 500px; 

  }
  .navbar-nav  .nav-link{
    padding: 16px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex-flow: column;
    justify-content: flex-start;
  }
  .footer-bottom {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .listingwrapper .amt {
    padding-bottom: 0;
    font-size: 16px !important;
  }
  .listingwrapper .added {
    font-size: 14px !important;
    margin-left: 0px !important;
  }
  .listingwrapper .fs-4 {
    font-size: 16px !important;
  }
  .paragraph-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
  }
  .shareIcon {
    width: 20px;
    height: 20px;
  }
  #saveAction i {
    font-size: 16px !important;
  }
  .view_profile .bannerImg {
    height: auto;
    aspect-ratio: 2 / 1;
  }
  .view_profile .profileImg {
    width: 140px;
    height: 140px;
    margin-top: -80px;
    margin-left: 40px;
  }
  .content-wrapper {
    padding-top: 70px !important;
  }
  .listingwrapper .addressText {
    font-size: 25px !important;
    line-height: 32px;
  }
  .ImgGrid_Box > div {
    width: 50%;
  }

  .newsletter .heading3,
  .myTeamSection .heading3,
  .featuredList .heading3 {
    font-size: 30px;
    line-height: 42px;
    padding-bottom: 0px;
    text-align: center;
  }
  .myTeamSection {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .newsletter,
  footer {
    padding-top: 100px;
    padding: 20px;
  }
  .search {
    min-width: 200px;
  }
  .navbar {
    padding: 24px 20px;
  }
  #likeAction {
    margin-right: 8px !important;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
  }
  .featuresSection {
    margin-bottom: 30px;
  }
  .view_profile .profileImg {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 600px) {
  .fullimg.leftImg {
    height: 200px;
  }
  .navbar-rounded {
    padding: 12px 10px;
  }
  .cardfooter-copy .tags {
    font-size: 16px;
  }
  .priceRow .text-darkblack {
    font-size: 14px !important;
  }
  .priceRow .text_grey {
    font-size: 13px !important;
  }
  .pricewrap .card {
    padding: 12px;
  }
  .profilecard .imgBox img {
    height: 200px;
  }
  .profilecard .avatar {
    top: -50px;
    width: 100px;
    height: 100px;
  }
  #callButton,
  #emailButton {
    padding: 3px 25px !important;
  }
  .view_profile .Specializing.card ul {
    grid-template-columns: 1fr;
  }
  .view_profile .Specializing.card ul li {
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 479px) {
  .footer-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 0px;
    flex-flow: wrap;
  }
  .footer-block-two {
    margin-top: 40px;
  }

  .navbar__right .btn-primary {
    letter-spacing: -0.064px;
    border-width: 1.23px;
    align-self: center;
    height: 35px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
    display: flex;
    box-shadow: 0.62px 0.62px #3e3164;
    margin-left: 6px !important;
  }
  .navbar__left img {
    width: 140px;
  }
  #shareModal .shareIcons {
    gap: 20px;
  }
  #shareModal .fs-5 {
    font-size: 14px !important;
  }
  .rangebox {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cardfooter-copy {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid !important;
  }
  .addressLine {
    align-items: flex-start !important;
  }
  .pricewrapper {
    padding: 20px;
  }
  .priceRow {
    grid-column-gap: 10px;
  }
  .listingwrapper .prop_desc,
  .view_profile .paragraph {
    font-size: 16px !important;
    line-height: 24px;
  }
  .featuresSection .rangebox {
    padding: 60px 20px 10px !important;
  }
  .featuresSection .rangebox,
  .InteriorSection .rangebox > .row {
    padding: 20px 10px;
  }
  .featuresSection .rangebox .text_grey,
  .featuresSection .rangebox .text-black {
    font-size: 18px !important;
  }
  .featuresSection .rangebox .row > div > .d-flex {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .featuresSection .rangebox .row > div {
    margin: 0 !important;
  }
  .view_profile .profileImg {
    width: 100px;
    height: 100px;
    margin-left: 7px;
    border-width: 2px;
  }
  .view_profile .btns_row .me-4 {
    margin-right: 10px !important;
    padding: 5px 20px !important;
  }
  .view_profile .btns_row span {
    font-size: 16px !important;
    margin-left: 5px !important;
  }
  .featuredList.in-viewport .heading3 .sky {
    margin-left: 0 !important;
  }
}
