.hide-scrollbar {
	overflow-x: scroll;
	scrollbar-width: none;
	/* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Opera */
}

.developer-tabs {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	column-gap: 16px;
	padding: 56px 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.developer-content h4,
.property-card-title h5 {
	color: #1C1C1C;
}

button.developer-tab {
	min-width: 266px;
	height: 96px;
	display: flex;
	justify-content: center;
	background-color: transparent !important;
	border: 1px solid #F4F2EC !important;
	border-radius: 12px !important;
	padding: 0 30px !important;
	cursor: pointer !important;
}

button.developer-tab.active,
button.developer-tab:hover {
	border: 1px solid #012367 !important;
	background-color: #012367 !important;
}

.developer-tabs .developer_logo img {
	filter: invert(0.5);
	transition: all 0.3s ease;
}

button.developer-tab.active img,
.developer_logo.developer-tab:hover img {
	filter: invert(1);
}

.property-card-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
	padding-top: 40px;
}

.property-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #F4F2EC80;
	border-radius: 16px;
	padding: 16px;
}

.property-card-img {
	aspect-ratio: 3/2.090;
	object-fit: initial;
	border-radius: 10px !important;
}

.property-card-heading {
	display: flex;
	justify-content: space-between;
}

.property-card-status {
    height: max-content;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 114.286%;
    color: #0F5132;
	white-space: nowrap;
    background-color: #0F51321A;
    border-radius: 6px;
    padding: 8px 16px 8px 40px;
    position: relative;
}

.property-card-status::before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #0F5132;
	outline: 2px solid #0F51324D;
	border-radius: 50%;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.divider-line {
	font-size: 0;
	height: 42px;
	width: 1px;
	background: #EEE;
}

.property-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid #EDEDED;
	padding: 22px 0;
	margin-bottom: 20px;
}

.meta-info {
	font-size: 16px;
	color: #1C1C1CB3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.property-card-price-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.property-price {
	font-family: "Poppins", Sans-serif !important;
	font-weight: 600 !important;
	color: #1C1C1C;
	padding-bottom: 0px !important;
}

a.view-property {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
	color: #0F5132;
}

a.view-property:hover {
	color: #C9A74D;
}

a.view-property:hover svg path {
	fill: #C9A74D;
}

.load-more-wrapper .load-more-btn {
	margin-top: 56px;
	border: none;
}

#property-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
}

/* home page featured Projects */

.property_card_slide {
	display: flex !important;
	gap: 30px;
}

.featured-projects-slider .slick-slide {
	margin-inline: 10px;
}

.featured-content {
	/* position: absolute; */
	background: #fff;
	width: 100%;
	padding: 20px;
	border-radius: 10px;
}

.featured-projects-card {
	display: flex;
	align-items: flex-end;
	height: 750px;
	padding: 20px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	border-radius: 10px;
}

.featured-content .property-card-bottom {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	justify-content: space-between;
	margin-top: 24px;
}

.width-40 {
	max-width: 40%;
}

.width-60 {
	max-width: 60%;
}

.width-100 {
	max-width: 100%;
}

a.home-view-property {
	display: inline-flex;
	padding: 10px;
	background: #012367;
	border-radius: 8px;
	transition: all 0.3s;
}

a.home-view-property:hover {
	background: #C9A74D;
}

.project-card-title {
	font-size: 20px !important;
	font-family: "Poppins", Sans-serif !important;
	color: #1C1C1C !important;
	font-weight: 500 !important;
	line-height: 120% !important;
	opacity: 0.6 !important;
}

.project-card-location-wrap {
    display: flex;
    align-items: center;
    column-gap: 6px;
    margin-top: 4px;
}

.featured-content .meta-info {
	flex-direction: column;
	display: flex;
	align-items: flex-start;
}

.featured-content .divider-line {
	height: auto !important;
}

.featured-content .property-card-meta {
	display: flex;
	align-items: stretch;
	padding: 0 !important;
	margin: 0 !important;
	border: 0px !important;
	gap: 15px !important;
}

/* Responsive */

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.property-card-meta {
		gap: 15px;
	}

	.meta-info {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1599px) {
	.developer-tabs {
		padding: 40px 0;
	}

	button.developer-tab {
		min-width: 243px;
		height: 86px;
		padding: 0 20px !important;
	}

	.property-card-wrap {
		gap: 32px 24px;
		padding-top: 30px;
	}

	#property-results {
		gap: 32px 24px;
	}

	.property-card {
		gap: 16px;
	}

	.property-card-status {
		font-size: 12px;
		padding: 8px 12px 8px 30px;
	}

	.property-card-status::before {
		width: 8px;
		height: 8px;
		left: 12px;
	}

	.property-card-meta {
		gap: 12px;
		padding: 20px 0;
	}

	.divider-line {
		height: 36px;
	}

	.meta-info img {
		width: 20px;
	}

	.meta-info {
		font-size: 14px;
		gap: 8px;
	}

	.load-more-wrapper .load-more-btn {
		margin-top: 40px;
	}

	.width-40 {
		max-width: 45%;
	}

	.width-60 {
		max-width: 55%;
	}
	
	.featured-projects-card {
		height: 570px;
	}
}

@media only screen and (max-width: 1366px) {
	.developer-tabs {
		padding: 30px 0;
	}

	button.developer-tab {
		min-width: 211px;
		height: 80px;
		padding: 0 10px !important;
	}

	.property-card-wrap,
	#property-results {
		gap: 28px 20px;
	}

	.property-card {
		padding: 14px;
	}

	.property-card-meta {
		padding: 16px 0;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.divider-line {
		height: 30px;
	}

	.featured-content .property-card-bottom {
		display: flex;
		gap: 20px;
		margin-top: 15px;
		flex-direction: column;
	}
	
	.featured-projects-card {
		height: 500px;
	}
}

@media only screen and (max-width: 1199px) {
	.property-card-wrap,
	#property-results {
		gap: 24px 16px;
	}

	.property-card-heading {
		column-gap: 10px;
	}

	.property-card-status {
		padding: 8px 10px 8px 22px;
	}

	.property-card-status::before {
		width: 6px;
		height: 6px;
		left: 10px;
	}
	
	.featured-projects-card {
		height: 400px;
	}
}

@media only screen and (max-width: 1024px) {
	.developer-tabs {
		padding: 25px 0;
	}

	button.developer-tab {
		min-width: 200px;
		height: 75px;
	}

	.property-card-wrap,
	#property-results {
		grid-template-columns: repeat(2, 1fr);
	}

	.property-card-status {
		padding: 8px 10px 8px 24px;
	}
	
	.width-40,
	.width-60 {
		max-width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.developer-tabs {
		column-gap: 14px;
	}

	button.developer-tab {
		min-width: 180px;
		height: 70px;
	}

	.property-card-wrap {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px 16px;
		padding-top: 25px;
	}

	#property-results {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px 16px;
	}

	.load-more-wrapper .load-more-btn {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 479px) {
	button.developer-tab {
		min-width: 160px;
		height: 60px;
	}
}