@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.project-listing-banner .content {
  max-width: 625px;
  margin-left: auto;
  margin-right: auto;
}
.project-listing-banner .content h1 {
  font-family: "Cinzel-regular";
  text-transform: uppercase;
}
.project-listing-banner .content p {
  color: var(--text);
  margin-top: 14px;
}

.filter-srtip {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: var(--headerfixed);
  background: var(--white);
  z-index: 6;
}
.filter-srtip .flex {
  justify-content: center;
  --inputsize: var(--filterstrip);
}
.filter-srtip .flex .form-group {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
  --paddingleftright: 22px;
}
.filter-srtip .flex .form-group::before, .filter-srtip .flex .form-group::after {
  display: none;
}
.filter-srtip .flex .form-group:not(:last-child) {
  border-right: 1px solid #E0E0E0;
}
.filter-srtip .flex .form-group label {
  background: #fff;
  padding: 2px 5px;
}
.filter-srtip .flex .form-group .custom-select::before {
  background-image: url(../../icon/arrow-down-gray.svg);
}
.filter-srtip .flex .form-group.category_select .custom-select, .filter-srtip .flex .form-group.type_select .custom-select {
  --iconpath: url(../../icon/building-2.svg);
}
.filter-srtip .flex .form-group.city_select .custom-select {
  --iconsize: 16px;
  --iconpath: url(../../icon/building.svg);
}
.filter-srtip .flex .form-group.price_select .custom-select {
  --iconpath: url(../../icon/rupee.svg);
}

.project-listing-secA {
  padding: 50px 0 80px;
}
.project-listing-secA .load-more-div {
  margin-top: 86px;
}
.project-listing-secA .load-more-div .load-more-btn {
  color: var(--primary);
  font-weight: 500;
}
.project-listing-secA .load-more-div .load-more-btn img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.banner.project-detail-banner::before {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 91.86%);
}
.banner.project-detail-banner .dlt-wrap {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  top: 62px;
}
.banner.project-detail-banner .dlt-wrap ul {
  line-height: 0;
}
.banner.project-detail-banner .dlt-wrap ul li {
  display: inline-block;
  vertical-align: middle;
}
.banner.project-detail-banner .dlt-wrap ul li .bt-li {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: 0.5s ease;
}
.banner.project-detail-banner .dlt-wrap ul li .bt-li:hover {
  color: var(--primary);
}
.banner.project-detail-banner .dlt-wrap ul li .bt-li:hover path {
  stroke: var(--primary);
}
.banner.project-detail-banner .dlt-wrap ul li:not(:last-child) {
  margin-right: 56px;
}
.banner.project-detail-banner .banner-wrapper .content {
  max-width: 605px;
}
.banner.project-detail-banner .banner-wrapper .content h1 {
  font-size: 32px;
  line-height: 1.1875;
}
.banner.project-detail-banner .banner-wrapper .share_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}
.banner.project-detail-banner .banner-wrapper .share_btn .share-btn-ico {
  height: 52px;
  width: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.banner.project-detail-banner .banner-wrapper .share_btn .share-btn-ico:hover {
  background: var(--primary);
  color: var(--white);
}
.banner.project-detail-banner .banner-wrapper .share_btn .share-btn-ico:hover path {
  fill: var(--white);
}
.banner.project-detail-banner .banner-wrapper .share_btn .side_ico-m {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 15px;
  flex-direction: column;
  border-radius: 5px;
  opacity: 0;
  transform: scale(0.75) translateY(21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transform-origin: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 675px) {
  .banner.project-detail-banner .banner-wrapper .share_btn .side_ico-m {
    bottom: auto;
    top: 100%;
    transform-origin: top;
  }
}
.banner.project-detail-banner .banner-wrapper .share_btn .side_ico-m.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.banner.project-detail-banner .banner-wrapper .share_btn .side_ico-m li svg {
  fill: var(--white);
  width: 25px;
}
.banner.project-detail-banner .banner-wrapper .share_btn .side_ico-m li svg:hover {
  fill: var(--primary);
}

.strip-prdtl {
  padding: 20px 0;
  background: var(--primary);
}
@media only screen and (max-width: 991px) {
  .strip-prdtl {
    padding: 15px 0;
  }
}
.strip-prdtl .flex {
  align-items: center;
}
.strip-prdtl .flex .colA {
  flex: 1;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
.strip-prdtl .flex .colA ul li {
  display: inline-block;
  vertical-align: middle;
}
.strip-prdtl .flex .colA ul li:not(:last-child) {
  margin-right: 46px;
}
.strip-prdtl .flex .colA ul li span {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.strip-prdtl .flex .colA ul li p {
  font-size: 12px;
  line-height: 22px;
  color: var(--white);
  font-weight: 500;
}
.strip-prdtl .flex .colB {
  flex: 0 1 auto;
}
@media only screen and (max-width: 675px) {
  .strip-prdtl .flex .colB {
    display: none;
  }
}
.strip-prdtl .flex .colB li {
  display: inline-block;
  vertical-align: middle;
}
.strip-prdtl .flex .colB li:not(:last-child) {
  margin-right: 19px;
}
@media only screen and (max-width: 991px) {
  .strip-prdtl .flex .colB li:not(:last-child) {
    margin-right: 8px;
  }
}
.strip-prdtl .flex .colB li .btn {
  --padding: 40px;
}
.strip-prdtl .flex .colB li .btn.white {
  color: var(--primary);
}
.strip-prdtl .flex .colB li .btn.white:hover {
  color: var(--white);
}

.nav-strip-dtl {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1490196078);
  position: sticky;
  top: var(--headerfixed);
  background: var(--white);
  z-index: 5;
}
.nav-strip-dtl ul li {
  display: inline-block;
  vertical-align: middle;
  height: var(--detailstrip);
  line-height: var(--detailstrip);
  font-size: 14px;
  padding: 0 28px;
  color: var(--text);
  font-weight: 500;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nav-strip-dtl ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--primary);
}
.nav-strip-dtl ul li::before {
  height: 2px;
  top: auto;
  width: 0;
  transition: 0.5s ease;
}
.nav-strip-dtl ul li:not(:last-child) {
  margin-right: 6px;
}
.nav-strip-dtl ul li.active {
  color: var(--primary);
}
.nav-strip-dtl ul li.active::before {
  width: 100%;
}

.project-detail-secA {
  padding: 42px 0 60px;
}
.project-detail-secA .flex .colA {
  flex: 0 1 68%;
  max-width: 68%;
  width: 100%;
}
.project-detail-secA .flex .colA .card-md {
  border: 1px solid #E0E0E0;
  box-shadow: 1px 1px 8.8px -4px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  overflow: hidden;
  padding: 30px 27px;
}
.project-detail-secA .flex .colA .card-md:not(:last-child) {
  margin-bottom: 28px;
}
.project-detail-secA .flex .colA .card-md:has(title-card-md) {
  padding: 12px 27px 30px;
}
.project-detail-secA .flex .colA .card-md .title-card-md {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.project-detail-secA .flex .colA .card-md .title-card-md h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.project-detail-secA .flex .colA .amenities-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 46px 26px;
}
.project-detail-secA .flex .colA .amenities-wrap .item {
  text-align: center;
}
.project-detail-secA .flex .colA .amenities-wrap .item .ico {
  width: 30px;
  height: 30px;
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.project-detail-secA .flex .colA .amenities-wrap .item .ico img {
  width: 100%;
}
.project-detail-secA .flex .colA .amenities-wrap .item p {
  color: var(--text);
  line-height: 1.3;
}
.project-detail-secA .flex .colA .floor-plan-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 20px;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md:hover .enqr-btn {
  transform: scale(1);
  opacity: 1;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md figure {
  padding: 17px 0 34px;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md figcaption {
  margin: 0 11px;
  border-top: 1px solid #CCCCCC;
  padding: 18px 21px 35px;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md figcaption h6 {
  font-size: 18px;
  font-weight: 500;
}
.project-detail-secA .flex .colA .floor-plan-wrap .col-md .enqr-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: -moz-fit-content;
  width: fit-content;
  --height: 52px;
  --padding: 40px;
  white-space: nowrap;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.5s ease;
}
.project-detail-secA .flex .colA .map-wrap {
  height: 270px;
  border-radius: 5px;
  overflow: hidden;
}
.project-detail-secA .flex .colA .map-wrap:hover::before {
  opacity: 1;
}
.project-detail-secA .flex .colA .map-wrap:hover figcaption .view-mp-btn {
  transform: scale(1);
  opacity: 1;
}
.project-detail-secA .flex .colA .map-wrap::before {
  background: rgba(0, 0, 0, 0.2);
  transition: 0.5s ease;
  opacity: 0;
}
.project-detail-secA .flex .colA .map-wrap figure {
  filter: grayscale(1);
  pointer-events: none;
}
.project-detail-secA .flex .colA .map-wrap figcaption {
  text-align: center;
}
.project-detail-secA .flex .colA .map-wrap figcaption .view-mp-btn {
  --height: 48px;
  --padding: 25px;
  transition: 0.5s ease;
  transform: scale(0.8);
  opacity: 0;
}
.project-detail-secA .flex .colA .landmark-wrap {
  margin-top: 25px;
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider {
  max-width: calc(100% - 45px);
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider .item {
  text-align: center;
  padding: 25px;
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider .item.swiper-slide-active {
  border-right: 1px solid #CCCCCC;
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider .item .ico {
  width: 45px;
  height: 45px;
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider .item p {
  line-height: 1;
}
.project-detail-secA .flex .colA .landmark-wrap .landmark-slider .item .plc-st {
  margin: 16px 0;
  color: var(--text);
}
.project-detail-secA .flex .colA .builder-wrap {
  display: flex;
  flex-wrap: wrap;
}
.project-detail-secA .flex .colA .builder-wrap figure {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow: hidden;
  flex: 0 1 27%;
  padding: 0 18px;
  background: var(--white);
  aspect-ratio: 1.09;
  display: flex;
  align-items: center;
}
.project-detail-secA .flex .colA .builder-wrap figure img {
  width: 100%;
}
.project-detail-secA .flex .colA .builder-wrap figcaption {
  flex: 1;
  padding-left: 40px;
}
.project-detail-secA .flex .colB {
  flex: 1;
  padding-left: 25px;
  position: sticky;
  height: 100%;
  top: calc(var(--headerfixed) + var(--detailstrip) + 20px);
}
.project-detail-secA .flex .colB .form-card {
  border: 1px solid #E0E0E0;
  box-shadow: 1px 1px 8.7px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 5px;
}
.project-detail-secA .flex .colB .form-card .upper-col {
  background: #E4E4E4;
  padding: 15px 20px;
}
.project-detail-secA .flex .colB .form-card .upper-col h5 {
  font-size: 18px;
  font-weight: 500;
}
.project-detail-secA .flex .colB .form-card .form-wrap {
  padding: 20px 25px 25px;
}
.project-detail-secA .flex .colB .form-card .form-wrap p {
  color: var(--text);
  margin-bottom: 20px;
}
.project-detail-secA .flex .colB .form-card .form-wrap .form {
  --gaptb: 17px;
}
.project-detail-secA .flex .colB .form-card .form-wrap .sbmt-grp .btn {
  --height: 57px;
}
@media only screen and (max-width: 1366px) {
  .project-detail-secA .flex .colB .form-card .form-wrap .sbmt-grp .btn {
    --height: 44px;
  }
}
.project-detail-secA.builder-detail-secA .colB {
  top: calc(var(--headerfixed) + 20px);
}

.project-detail-secB {
  padding: 60px 0;
}
.project-detail-secB .upper-sec {
  margin-bottom: 43px;
}
.project-detail-secB .upper-sec .more-project-nav {
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner.builder-detail-banner .banner-wrapper .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.banner.builder-detail-banner .banner-wrapper .content figure {
  flex: 0 1 180px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.3;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.banner.builder-detail-banner .banner-wrapper .content figure img {
  width: 100%;
}
.banner.builder-detail-banner .banner-wrapper .content figcaption {
  padding-left: 30px;
}
.banner.builder-detail-banner .banner-wrapper .content figcaption h1 {
  font-size: 32px;
  line-height: 1.1875;
}/*# sourceMappingURL=project.css.map */